| java Programming Glossary: dpackagingManaging DLL dependencies with Maven http://stackoverflow.com/questions/1001774/managing-dll-dependencies-with-maven  DgroupId com.foo DartifactId footron Dversion 4.2 Dpackaging dll DgeneratePom true Haven't done this for DLLs but something.. 
 Find Oracle JDBC driver in Maven repository http://stackoverflow.com/questions/1074869/find-oracle-jdbc-driver-in-maven-repository  com.oracle DartifactId ojdbc14 Dversion 10.2.0.3.0 Dpackaging jar Dfile ojdbc.jar DgeneratePom true The last parameter for.. 
 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  DgroupId com.oracle DartifactId ojdbc14 Dversion 10.2.0 Dpackaging jar You can then reference the dependencies as normal in your.. 
 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  myGroup  DartifactId myArtifactId Dversion myVersion  Dpackaging myPackaging DlocalRepositoryPath path Update It appears that.. myGroup  DartifactId myArtifactId Dversion myVersion  Dpackaging myPackaging DlocalRepositoryPath path Finally declare it like.. 
 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  jar .jar DgroupId dummy DartifactId dummy Dversion 0.0.0 Dpackaging jar DlocalRepositoryPath `pwd` repo Not sure if the repo path.. 
 Add a dependency in Maven http://stackoverflow.com/questions/396245/add-a-dependency-in-maven  DartifactId yourartifactid... Dversion 1.0 Dpackaging jar Dfile path to jarfile You can also deploy it to your internal.. 
 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   DartifactId WadlGenerator  Dversion 1.0  Dpackaging jar  DlocalRepositoryPath C maven repositories internal How.. 
 |