aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2012-03-05 17:49:29 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2012-03-05 17:49:29 +0000
commit34bd30f1a6c496f5fcef19999ff11509a9c5e31d (patch)
tree68d4aae8a23026af37b73057c46d83b2cfeda987 /pom.xml
parent256279fbd282807e2d49fda3c167243b79e833de (diff)
downloadjavassist-34bd30f1a6c496f5fcef19999ff11509a9c5e31d.tar.gz
javassist-34bd30f1a6c496f5fcef19999ff11509a9c5e31d.zip
3.16.1-GA releaserel_3_16_1_ga
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@623 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml51
1 files changed, 38 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index 9ae98be0..e7bfdc19 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
- <version>3.16.0-GA</version>
+ <version>3.16.1-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>
@@ -123,16 +123,26 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
<configuration>
- <source>1.4</source>
- <target>1.4</target>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.12</version>
+ <configuration>
+ <includes>
+ <include>javassist/JvstTest.java</include>
+ </includes>
+ <forkMode>once</forkMode>
+ <workingDirectory>runtest</workingDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1</version>
<configuration>
<archive>
<manifestFile>${project.build.sourceDirectory}/META-INF/MANIFEST.MF</manifestFile>
@@ -230,26 +240,40 @@
needed by sample code
-->
<profile>
- <id>default_profile</id>
+ <id>default-tools</id>
<activation>
<os>
<family>!mac</family>
</os>
</activation>
- <properties>
- <toolsjar>${java.home}/../lib/tools.jar</toolsjar>
- </properties>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>${java.version}</version>
+ <scope>system</scope>
+ <optional>true</optional>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
</profile>
<profile>
- <id>osx_profile</id>
+ <id>mac-tools</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
- <properties>
- <toolsjar>${java.home}/../Classes/classes.jar</toolsjar>
- </properties>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>${java.version}</version>
+ <scope>system</scope>
+ <optional>true</optional>
+ <systemPath>${java.home}/../Classes/classes.jar</systemPath>
+ </dependency>
+ </dependencies>
</profile>
</profiles>
<dependencies>
@@ -261,3 +285,4 @@
</dependency>
</dependencies>
</project>
+