aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2011-11-10 03:36:14 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2011-11-10 03:36:14 +0000
commit858a3d72f405f20fe8fd5f966981fff7ad56f6c3 (patch)
treebd14b5b9a4a3ec20f75f5cd7c6a454e2d85b1016 /pom.xml
parent9f078b1d89cf93f0506638d1983798f5ffdac1b6 (diff)
downloadjavassist-858a3d72f405f20fe8fd5f966981fff7ad56f6c3.tar.gz
javassist-858a3d72f405f20fe8fd5f966981fff7ad56f6c3.zip
merged the patch for JASSIST-126
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@597 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 30 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index f0c391fa..5b4fca96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>