121 lines
4.8 KiB
XML
121 lines
4.8 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">
|
|
<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-database</artifactId>
|
|
<name>cctp-test-element-database</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.7.16</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.16</version>
|
|
</dependency>
|
|
<!-- oracle-->
|
|
<dependency>
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
<artifactId>ojdbc6</artifactId>
|
|
<version>11.2.0.4</version>
|
|
</dependency>
|
|
<!-- mongodb-->
|
|
<dependency>
|
|
<groupId>org.mongodb</groupId>
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
<version>3.2.2</version>
|
|
</dependency>
|
|
<!-- 使用sqlutils解析sql字符串用到-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.0.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dameng</groupId>
|
|
<artifactId>Dm8JdbcDriver18</artifactId>
|
|
<version>8.1.1.49</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.ibm.db2</groupId>
|
|
<artifactId>jcc</artifactId>
|
|
<version>11.5.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>5.2.15.RELEASE</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>NK.Database-3.21</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/database/DatabaseLibrary.javadoc
|
|
</additionalOption>
|
|
</additionalOptions>
|
|
<useStandardDocletOptions>false</useStandardDocletOptions>
|
|
<javadocExecutable>${java.home}/../bin</javadocExecutable>
|
|
<sourceFileIncludes>
|
|
<sourceFileInclude>net/northking/cctp/element/database/keywords/*.java</sourceFileInclude>
|
|
<sourceFileInclude>net/northking/cctp/element/database/DatabaseLibrary.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> |