]> source.dussan.org Git - javassist.git/commitdiff
rolled over version number to 3.12.1-SNAPSHOT in ant build script and pom. also updat...
authoradinn <adinn@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Wed, 21 Apr 2010 10:17:44 +0000 (10:17 +0000)
committeradinn <adinn@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Wed, 21 Apr 2010 10:17:44 +0000 (10:17 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@534 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

build.xml
pom.xml

index 0da95e5821ec8f93b5ed1a8e6c44d5566ab6049b..d8281a5fdb7871f1c136a651254a27ca93d9111f 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -6,7 +6,7 @@
 
 <project name="javassist" default="jar" basedir=".">
 
-  <property name="dist-version" value="javassist-3.12.GA"/>
+  <property name="dist-version" value="javassist-3.12.1-SNAPSHOT"/>
 
   <property environment="env"/>
   <property name="target.jar" value="javassist.jar"/>
diff --git a/pom.xml b/pom.xml
index 94a7e66384bc9f7558f4e8ec19f582b86b7af518..a2a34603c01f00d2382b4b11992b99fe01599428 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -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>