diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2007-06-12 09:06:49 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2007-06-12 09:06:49 +0000 |
commit | 634dbbcb87e004e30c74bee40ab1eca0fb2dbc1d (patch) | |
tree | b59081be748605f89a59b32c2caa1520ac3c635d /pom.xml | |
parent | b6e8ae8dd3ab057ba5acf796cac375a954058c10 (diff) | |
download | javassist-634dbbcb87e004e30c74bee40ab1eca0fb2dbc1d.tar.gz javassist-634dbbcb87e004e30c74bee40ab1eca0fb2dbc1d.zip |
added JDK 1.6 support
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@388 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -64,6 +64,21 @@ </dependency>
</dependencies>
</profile>
+ <profile>
+ <id>jdk16</id>
+ <activation>
+ <jdk>1.6</jdk>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.6</version>
+ <scope>system</scope>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </profile>
</profiles>
<repositories>
<repository>
|