144 lines
5.5 KiB
XML
144 lines
5.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>net.northking.cctp</groupId>
|
|
<artifactId>cctp-test-element-library</artifactId>
|
|
<version>1.0.0-RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>cctp-test-element-interface</artifactId>
|
|
<name>cctp-test-element-interface</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<groovy.version>3.0.5</groovy.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Http Components -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.5.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.brotli</groupId>
|
|
<artifactId>dec</artifactId>
|
|
<version>0.1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.8.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
<version>2.3.31</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jodd</groupId>
|
|
<artifactId>jodd-core</artifactId>
|
|
<version>5.0.6</version>
|
|
</dependency>
|
|
|
|
<!-- json-path -->
|
|
<dependency>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
<version>2.4.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.11.4</version>
|
|
</dependency>
|
|
|
|
<!-- dom4j -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.dom4j</groupId>-->
|
|
<!-- <artifactId>dom4j</artifactId>-->
|
|
<!-- <version>2.1.1</version>-->
|
|
<!-- <scope>provided</scope>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>jaxen</groupId>
|
|
<artifactId>jaxen</artifactId>
|
|
<version>1.1.6</version>
|
|
</dependency>
|
|
|
|
<!-- Minio S3 云存储 -->
|
|
<dependency>
|
|
<groupId>io.minio</groupId>
|
|
<artifactId>minio</artifactId>
|
|
<version>7.1.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<configuration>
|
|
<charset>UTF-8</charset>
|
|
<encoding>UTF-8</encoding>
|
|
<docencoding>UTF-8</docencoding>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>xml-doclet</id>
|
|
<!-- <phase>none</phase>-->
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>javadoc</goal>
|
|
</goals>
|
|
<configuration>
|
|
<doclet>com.github.markusbernhardt.xmldoclet.XmlDoclet</doclet>
|
|
<additionalOptions>
|
|
<additionalOption>
|
|
-d ${project.build.directory}/classes
|
|
</additionalOption>
|
|
<additionalOption>
|
|
-filename net/northking/cctp/element/internal/InterfaceLibrary.javadoc
|
|
</additionalOption>
|
|
</additionalOptions>
|
|
<useStandardDocletOptions>false</useStandardDocletOptions>
|
|
<javadocExecutable>${java.home}/../bin</javadocExecutable>
|
|
<sourceFileIncludes>
|
|
<sourceFileInclude>net/northking/cctp/element/internal/keywords/*.java</sourceFileInclude>
|
|
<sourceFileInclude>net/northking/cctp/element/internal/InterfaceLibrary.java</sourceFileInclude>
|
|
</sourceFileIncludes>
|
|
<docletArtifact>
|
|
<groupId>com.github.markusbernhardt</groupId>
|
|
<artifactId>xml-doclet</artifactId>
|
|
<version>${xml.doclet.version}</version>
|
|
</docletArtifact>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |