[jboss-cvs] javassist SVN: r597 - trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 9 22:36:14 EST 2011


Author: chiba
Date: 2011-11-09 22:36:14 -0500 (Wed, 09 Nov 2011)
New Revision: 597

Modified:
   trunk/pom.xml
Log:
merged the patch for JASSIST-126

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2011-11-04 17:37:02 UTC (rev 596)
+++ trunk/pom.xml	2011-11-10 03:36:14 UTC (rev 597)
@@ -3,10 +3,11 @@
   <groupId>org.javassist</groupId>
   <artifactId>javassist</artifactId>
   <packaging>jar</packaging>
-  <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
-     simple.  It is a class library for editing bytecodes in Java.
+  <description>
+  	Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
+    simple.  It is a class library for editing bytecodes in Java.
   </description>
-  <version>3.14.0-GA</version>
+  <version>3.15.0-GA</version>
   <name>Javassist</name>
   <url>http://www.javassist.org/</url>
 
@@ -157,6 +158,32 @@
 	  <attach>true</attach>
 	</configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.1.0</version>
+        <executions>
+          <execution>
+            <id>bundle-manifest</id>
+            <phase>process-classes</phase>
+            <goals>
+              <goal>manifest</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <supportedProjectTypes>
+            <supportedProjectType>jar</supportedProjectType>
+            <supportedProjectType>bundle</supportedProjectType>
+            <supportedProjectType>war</supportedProjectType>
+          </supportedProjectTypes>
+          <instructions>
+            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+            <Bundle-Version>${project.version}</Bundle-Version>
+            <Export-Package>javassist.*;version="${project.version}"</Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <profiles>



More information about the jboss-cvs-commits mailing list