microsoft / vscode-remote-try-java

Java sample project for trying out Dev Containers
https://aka.ms/vscode-remote/containers/getting-started
MIT License
301 stars 433 forks source link

Folder structure very confusing #10

Closed dbaeumer closed 4 years ago

dbaeumer commented 4 years ago

The folder structure is very confusing especially since the are folders named java.

capture

azusa commented 4 years ago

Hi @dbaeumer , I wonder that folders named java is a default folder structure for Java Project with Maven.

egamma commented 4 years ago

@azusa is correct this is the folder structure generated by the Maven project generation support. For example:

mvn archetype:generate -DgroupId=com.test.hello -DartifactId=myproject -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

Generates

image

I haven't found a quick way to not generate the Java folder when using Maven. Therefore I suggest to keep the current folder structure. @Chuxel what do you think?

Chuxel commented 4 years ago

@egamma Yes I agree - let's close.