82 lines
3.6 KiB
XML
82 lines
3.6 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">
|
|
<parent>
|
|
<artifactId>cctp-test-element-library</artifactId>
|
|
<groupId>net.northking.cctp</groupId>
|
|
<version>1.0.0-RELEASE</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>cctp-test-element-desktop</artifactId>
|
|
<name>cctp-test-element-desktop</name>
|
|
<version>1.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.8.15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.northking.cctp</groupId>
|
|
<artifactId>atu-pc-driver</artifactId>
|
|
<version>1.0.0-RELEASE</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>NK.Desktop-1.80</finalName>
|
|
<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/desktop/DesktopLibrary.javadoc
|
|
</additionalOption>
|
|
</additionalOptions>
|
|
<useStandardDocletOptions>false</useStandardDocletOptions>
|
|
<javadocExecutable>${java.home}/../bin</javadocExecutable>
|
|
<sourceFileIncludes>
|
|
<sourceFileInclude>net/northking/cctp/element/desktop/keywords/*.java</sourceFileInclude>
|
|
<sourceFileInclude>net/northking/cctp/element/desktop/DesktopLibrary.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> |