Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 984 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 984 Bytes

maven-repo

Maven repository for jars not on maven central

To add a new jar:

  1. Place jar in jars subfolder

  2. Add jar to maven repo:

mvn install:install-file -DgroupId=codemining.deps -DartifactId=$depname -Dversion=$version -Dfile=$path -Dpackaging=jar -DgeneratePom=true -DlocalRepositoryPath=./repository -DcreateChecksum=true

(optionally add -Dsources=$sourcepath to include sources)

Note that the default $version for all packages except spmf is 1.0

  1. Update relevant pom.xml:

<dependency>
<groupId>codemining.deps<groupId>
<artifactId>$depname<artifactId>
<version>$version<version>
</dependency>

That's all!

More info

http://riaconnection.wordpress.com/2012/08/01/create-your-own-github-maven-repository/ https://bitbucket.org/neil_rubens/rapidminer_maven-repo/wiki/Home http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html