You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
<groupId>com.fr.third</groupId> |
|
<artifactId>step8</artifactId> |
|
<version>${revision}</version> |
|
<relativePath>../base-third-project/base-third-step8</relativePath> |
|
</parent> |
|
|
|
<artifactId>fine-transmittable-thread-local</artifactId> |
|
<version>${revision}</version> |
|
|
|
<dependencies> |
|
<!-- |
|
javassist v3.23 is the last version support Java 6 |
|
DO NOT upgrade javassist version! |
|
--> |
|
<!--<dependency> |
|
<groupId>org.javassist</groupId> |
|
<artifactId>javassist</artifactId> |
|
<version>3.23.2-GA</version> |
|
<optional>true</optional> |
|
</dependency>--> |
|
<dependency> |
|
<groupId>com.fr.third</groupId> |
|
<artifactId>fine-javassist</artifactId> |
|
<version>${revision}</version> |
|
</dependency> |
|
|
|
<!-- Testing frameworks and related dependencies --> |
|
</dependencies> |
|
|
|
</project>
|
|
|