From: <nik...@us...> - 2016-05-11 10:04:19
|
Revision: 2505 http://sourceforge.net/p/jsbml/code/2505 Author: niko-rodrigue Date: 2016-05-11 10:04:17 +0000 (Wed, 11 May 2016) Log Message: ----------- configured the pom files to deploy into a sourceforge repo. Goal is to have a clean repo in sf or github that can be used to mirror to maven central Modified Paths: -------------- tags/jsbml-1.1/build.xml tags/jsbml-1.1/pom.xml Modified: tags/jsbml-1.1/build.xml =================================================================== --- tags/jsbml-1.1/build.xml 2016-05-09 12:57:32 UTC (rev 2504) +++ tags/jsbml-1.1/build.xml 2016-05-11 10:04:17 UTC (rev 2505) @@ -126,7 +126,7 @@ <fileset dir="${simulation.core.dir}/lib/ext-lib/" includes="*.jar"/> </path> - <property name="maven.repo.url" value="file:///homes/maven/public_html/m2repo"/> + <property name="maven.repo.url" value="scp://shell.sourceforge.net/home/project-web/jsbml/htdocs/m2repo"/> <!-- local test instance url file:///homes/maven/public_html/m2repo --> </target> @@ -738,6 +738,7 @@ <arg value="-DpomFile=./dev/maven/pom.xml"/> <arg value="-Dfile=./dev/maven/jsbml-pom.jar"/> <arg value="-Durl=${maven.repo.url}"/> + <arg value="-DrepositoryId=jsbml-maven-repo-sf"/> </exec> <!-- mvn test jar:test-jar to generate the test jar files to be able to run the tests in a new project --> Modified: tags/jsbml-1.1/pom.xml =================================================================== --- tags/jsbml-1.1/pom.xml 2016-05-09 12:57:32 UTC (rev 2504) +++ tags/jsbml-1.1/pom.xml 2016-05-11 10:04:17 UTC (rev 2505) @@ -188,29 +188,26 @@ <repositories> <repository> - <id>local-repo</id> - <url>http://localhost/repo</url> + <id>sf-repo</id> + <url>http://jsbml.sourceforge.net/m2repo</url> </repository> + <repository> + <id>sf-repo-s</id> + <url>http://jsbml.sourceforge.net/m2repo_snapshots</url> + </repository> </repositories> - + <distributionManagement> <repository> - <id>local-repo-deploy</id> - <name>Test Maven2 repository</name> - <url>file:///var/www/html/repo</url> + <id>jsbml-maven-repo-sf</id> + <name>JSBML Maven repository</name> + <url>scp://shell.sourceforge.net/home/project-web/jsbml/htdocs/m2repo</url> </repository> <snapshotRepository> - <id>jsbmlmavenrepotest.sourceforge.net</id> + <id>jsbml-maven-repo-s-sf</id> <name>JSBML Maven2 SNAPSHOT repository</name> - <url>scp://shell.sourceforge.net/home/project-web/jsbmlmavenrepotest/htdocs/snapshotRepository</url> + <url>scp://shell.sourceforge.net/home/project-web/jsbml/htdocs/m2repo_snapshots</url> </snapshotRepository> </distributionManagement> - <!-- <repository> - <id>jsbmlmavenrepotest.sourceforge.net</id> - <name>JSBML Maven2 repository</name> - <url>scp://shell.sourceforge.net/home/project-web/jsbmlmavenrepotest/htdocs/releaseRepository</url> - </repository> ---> - </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |