Maven

Create an empty java project:

mvn archetype:generate -DgroupId=com.example -DartifactId=foobar -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

Modify the pom.xml file and add below the </name> tag:

<properties>
     <maven.compiler.source>17</maven.compiler.source>
     <maven.compiler.target>17</maven.compiler.target>
</properties>

Check the dependency tree:

mvn dependency:tree

Download dependencies in pom.xml

mvn dependency:copy-dependencies

Tags java

Back