diff options
author | adinn <adinn@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2010-04-21 10:17:44 +0000 |
---|---|---|
committer | adinn <adinn@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2010-04-21 10:17:44 +0000 |
commit | 06eed61bab16188b6ec1617136d708ee7236c22d (patch) | |
tree | e2cff5841b7b9231f777cbca539c3f535dd98e6e /pom.xml | |
parent | b6e797346c8ce0fe2f40ef9fb615c69f8fa6cb15 (diff) | |
download | javassist-06eed61bab16188b6ec1617136d708ee7236c22d.tar.gz javassist-06eed61bab16188b6ec1617136d708ee7236c22d.zip |
rolled over version number to 3.12.1-SNAPSHOT in ant build script and pom. also updated the pom so it can be used to deploy snapshots or full releases to the new jboss repository
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@534 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 77 |
1 files changed, 69 insertions, 8 deletions
@@ -8,28 +8,89 @@ <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java. </description> - <version>3.12.0.GA</version> + <version>3.12.1-SNAPSHOT</version> <name>Javassist</name> <url>http://www.javassist.org/</url> + + <issueManagement> + <system>JIRA</system> + <url>https://jira.jboss.org/jira/browse/JASSIST/</url> + </issueManagement> + <licenses> + <!-- this is the license under which javassist is distributed when + it is bundled with JBoss + --> + <license> + <name>LGPL 2.1</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + </licenses> + + <scm> + <connection>scm:svn:http://anonsvn.jboss.org/repos/javassist/</connection> + <developerConnection>scm:svn:https://svn.jboss.org/repos/javassist/</developerConnection> + <url>http://fisheye.jboss.org/browse/javassist/</url> + </scm> + + <developers> + <developer> + <id>chiba</id> + <name>Shigeru Chiba</name> + <email>chiba@acm.org</email> + <organization>Tokyo Institute Of Technology</organization> + <organizationUrl>http://www.csg.is.titech.ac.jp/</organizationUrl> + <roles> + <role>project lead</role> + </roles> + <timezone>8</timezone> + </developer> + + <developer> + <id>adinn</id> + <name>Andrew Dinn</name> + <email>adinn@redhat.com</email> + <organization>JBoss</organization> + <organizationUrl>http://www.jboss.org/</organizationUrl> + <roles> + <role>contributing developer</role> + </roles> + <timezone>0</timezone> + </developer> + </developers> + <distributionManagement> <!-- - You need an entry in your .m2/settings.xml like this: + You need entries in your .m2/settings.xml like this: <servers> <server> - <id>snapshots.jboss.org</id> + <id>jboss-releases-repository</id> + <username>your_jboss.org_username</username> + <password>password</password> + </server> + <server> + <id>jboss-snapshots-repository</id> <username>your_jboss.org_username</username> <password>password</password> </server> </servers> - Then to deploy a snapshot, you need to run + To deploy a snapshot, you need to run - deploy -Djboss.snapshots.repo.url=dav:https://snapshots.jboss.org/maven2 + mvn deploy -Dversion=3.x.y-SNAPSHOT + + To deploy a release you need to change the version to 3.x.y.GA and run + + mvn deploy --> + <repository> + <id>jboss-releases-repository</id> + <name>JBoss Releases Repository</name> + <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url> + </repository> <snapshotRepository> - <id>snapshots.jboss.org</id> - <name>JBoss Snapshot Repository</name> - <url>${jboss.snapshots.repo.url}</url> + <id>jboss-snapshots-repository</id> + <name>JBoss Snapshots Repository</name> + <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <build> |