58 lines
1.8 KiB
XML
58 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest</artifactId>
|
|
<version>1.5.36</version>
|
|
</parent>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-jaxb</artifactId>
|
|
<version>1.5.36</version>
|
|
<name>forest-jaxb</name>
|
|
<licenses>
|
|
<license>
|
|
<name>The MIT License (MIT)</name>
|
|
<url>https://mit-license.org</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<properties>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<glassfish.jaxb.version>2.3.1</glassfish.jaxb.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-core</artifactId>
|
|
<version>${parent.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
<version>${glassfish.jaxb.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-mock</artifactId>
|
|
<version>${revision}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.83</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|