98 lines
4.2 KiB
XML
98 lines
4.2 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-mobile</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.appium</groupId>
|
||
|
<artifactId>java-client</artifactId>
|
||
|
<version>7.6.0</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-core</artifactId>
|
||
|
<version>5.2.15.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-web</artifactId>
|
||
|
<version>5.2.15.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.12.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-core</artifactId>
|
||
|
<version>5.5.8</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/mobile/MobileLibrary.javadoc
|
||
|
</additionalOption>
|
||
|
</additionalOptions>
|
||
|
<useStandardDocletOptions>false</useStandardDocletOptions>
|
||
|
<javadocExecutable>${java.home}/../bin</javadocExecutable>
|
||
|
<sourceFileIncludes>
|
||
|
<sourceFileInclude>net/northking/cctp/element/mobile/keywords/*.java</sourceFileInclude>
|
||
|
<sourceFileInclude>net/northking/cctp/element/mobile/MobileLibrary.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>
|