Maven Tutorial¶
Useful Maven Commands¶
Install custom jar into maven local repository¶
- Go to target jar file folder and run following commands with your jar specific parameters
- In following example I want to install sqljdbc4.jar file into local repository
- Parameters -Dfile : Target Jar File Path -DgroupId= [Your custom group id Ex: com.exmaple] -DartifactId=[Jar Name / or Project Name] -Dversion=[version of the jar] -Dpackaging=[jar/pom]
1 2 | |