aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorchibash <chiba@javassist.org>2016-10-05 00:51:28 +0900
committerchibash <chiba@javassist.org>2016-10-05 00:51:28 +0900
commitfd1b5fa8cdf07a6b153bbc606fe1ab78c2be6c26 (patch)
tree4bd332eaa9935a9962e517f18beb5cda27eb2f77 /pom.xml
parent35fb5b39f86ef92661a0f672780bb000692fc580 (diff)
parent5ea5b6695cf3ecb9896b9e9ce02f089b893101a4 (diff)
downloadjavassist-fd1b5fa8cdf07a6b153bbc606fe1ab78c2be6c26.tar.gz
javassist-fd1b5fa8cdf07a6b153bbc606fe1ab78c2be6c26.zip
Merge branch 'test/java9-jigsaw'
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml18
1 files changed, 7 insertions, 11 deletions
diff --git a/pom.xml b/pom.xml
index 49ba6657..f4390628 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.21.0-GA</version>
+ <version>3.22.0-CR1</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>
@@ -145,8 +145,8 @@
<configuration>
<source>1.6</source>
<target>1.6</target>
- <testSource>1.8</testSource>
- <testTarget>1.8</testTarget>
+ <testSource>1.9</testSource>
+ <testTarget>1.9</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>
</configuration>
</plugin>
@@ -269,9 +269,7 @@
<profile>
<id>default-tools</id>
<activation>
- <os>
- <family>!mac</family>
- </os>
+ <jdk>[,1.8]</jdk>
</activation>
<dependencies>
<dependency>
@@ -285,11 +283,9 @@
</dependencies>
</profile>
<profile>
- <id>mac-tools</id>
+ <id>java9-tools</id>
<activation>
- <os>
- <family>mac</family>
- </os>
+ <jdk>[1.9,]</jdk>
</activation>
<dependencies>
<dependency>
@@ -298,7 +294,7 @@
<version>${java.version}</version>
<scope>system</scope>
<optional>true</optional>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ <systemPath>${java.home}/jrt-fs.jar</systemPath>
</dependency>
</dependencies>
</profile>