diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2011-11-10 03:36:14 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2011-11-10 03:36:14 +0000 |
commit | 858a3d72f405f20fe8fd5f966981fff7ad56f6c3 (patch) | |
tree | bd14b5b9a4a3ec20f75f5cd7c6a454e2d85b1016 /pom.xml | |
parent | 9f078b1d89cf93f0506638d1983798f5ffdac1b6 (diff) | |
download | javassist-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.xml | 33 |
1 files changed, 30 insertions, 3 deletions
@@ -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> |