java Programming Glossary: dversion
Managing DLL dependencies with Maven http://stackoverflow.com/questions/1001774/managing-dll-dependencies-with-maven Dfile footron.dll DgroupId com.foo DartifactId footron Dversion 4.2 Dpackaging dll DgeneratePom true Haven't done this for DLLs..
Find Oracle JDBC driver in Maven repository http://stackoverflow.com/questions/1074869/find-oracle-jdbc-driver-in-maven-repository install file DgroupId com.oracle DartifactId ojdbc14 Dversion 10.2.0.3.0 Dpackaging jar Dfile ojdbc.jar DgeneratePom true..
Maven: How to include jars, which are not available in reps into a J2EE project? http://stackoverflow.com/questions/1164043/maven-how-to-include-jars-which-are-not-available-in-reps-into-a-j2ee-project Dfile ojdbc14.jar DgroupId com.oracle DartifactId ojdbc14 Dversion 10.2.0 Dpackaging jar You can then reference the dependencies..
Maven: add a dependency to a jar by relative path http://stackoverflow.com/questions/2229757/maven-add-a-dependency-to-a-jar-by-relative-path path to file DgroupId myGroup DartifactId myArtifactId Dversion myVersion Dpackaging myPackaging DlocalRepositoryPath path.. path to file DgroupId myGroup DartifactId myArtifactId Dversion myVersion Dpackaging myPackaging DlocalRepositoryPath path..
Maven archetype for simple Servlet application http://stackoverflow.com/questions/2782066/maven-archetype-for-simple-servlet-application generate DgroupId com.acme DartifactId my webapp Dversion 1.0 SNAPSHOT DarchetypeArtifactId maven archetype webapp DinteractiveMode..
Having a 3rd party jar included in Maven shaded jar without adding it to local repository http://stackoverflow.com/questions/3642023/having-a-3rd-party-jar-included-in-maven-shaded-jar-without-adding-it-to-local-r file Dfile my jar .jar DgroupId dummy DartifactId dummy Dversion 0.0.0 Dpackaging jar DlocalRepositoryPath `pwd` repo Not sure..
Add a dependency in Maven http://stackoverflow.com/questions/396245/add-a-dependency-in-maven com.stackoverflow... DartifactId yourartifactid... Dversion 1.0 Dpackaging jar Dfile path to jarfile You can also deploy..
How to install jars in maven repository which is eclipse embedded? http://stackoverflow.com/questions/4323981/how-to-install-jars-in-maven-repository-which-is-eclipse-embedded DgroupId foo.in.shop.rest.wadl DartifactId WadlGenerator Dversion 1.0 Dpackaging jar DlocalRepositoryPath C maven repositories..
Create a standalone application with maven http://stackoverflow.com/questions/8106769/create-a-standalone-application-with-maven generate DgroupId com.yourapp.app DartifactId swingapp Dversion 1.0 SNAPSHOT 2 Then add the following entry to your pom file..
|