69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<project
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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">
|
||
|
<parent>
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-parent</artifactId>
|
||
|
<version>1.0.0-RELEASE</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>cctp-test-element-core</artifactId>
|
||
|
<version>1.0.2-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.markusbernhardt</groupId>
|
||
|
<artifactId>xml-doclet</artifactId>
|
||
|
<version>1.0.5</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>com.sun</groupId>
|
||
|
<artifactId>tools</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>commons-cli</groupId>
|
||
|
<artifactId>commons-cli</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>1.2.62</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.12</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xeustechnologies</groupId>
|
||
|
<artifactId>jcl-core</artifactId>
|
||
|
<version>2.8</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.dom4j</groupId>
|
||
|
<artifactId>dom4j</artifactId>
|
||
|
<version>2.1.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.bouncycastle</groupId>
|
||
|
<artifactId>bcprov-jdk15to18</artifactId>
|
||
|
<version>1.70</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|