279 lines
8.0 KiB
XML
279 lines
8.0 KiB
XML
<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>
|
||
|
||
<groupId>LuckyFrame</groupId>
|
||
<artifactId>LuckyFrame</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<packaging>jar</packaging>
|
||
|
||
<name>LuckyFrameClient</name>
|
||
<url>http://maven.apache.org</url>
|
||
<build>
|
||
<finalName>LuckyFrameClient</finalName>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.3</version>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<configuration>
|
||
<skip>true</skip>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-dependency-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<id>copy-dependencies</id>
|
||
<phase>prepare-package</phase>
|
||
<goals>
|
||
<goal>copy-dependencies</goal>
|
||
</goals>
|
||
<configuration>
|
||
<outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
|
||
<overWriteReleases>false</overWriteReleases>
|
||
<overWriteSnapshots>false</overWriteSnapshots>
|
||
<overWriteIfNewer>true</overWriteIfNewer>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-jar-plugin</artifactId>
|
||
<configuration>
|
||
<archive>
|
||
<manifest>
|
||
<addClasspath>true</addClasspath>
|
||
<classpathPrefix>lib/</classpathPrefix>
|
||
<mainClass>theMainClass</mainClass>
|
||
</manifest>
|
||
</archive>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<version>2.5</version>
|
||
<executions>
|
||
<execution>
|
||
<id>copy-sh</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>copy-resources</goal>
|
||
</goals>
|
||
<configuration>
|
||
<encoding>GBK</encoding>
|
||
<outputDirectory>${project.build.directory}/classes/
|
||
</outputDirectory>
|
||
<resources>
|
||
<resource>
|
||
<directory>src/main/Resources</directory>
|
||
<includes>
|
||
<include>**/*.cmd</include>
|
||
<include>**/*.bat</include>
|
||
<include>**/*.exe</include>
|
||
<include>**/*.conf</include>
|
||
<include>**/*.sh</include>
|
||
<include>**/*.properties</include>
|
||
</includes>
|
||
</resource>
|
||
</resources>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>GBK</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>3.8.1</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>c3p0</groupId>
|
||
<artifactId>c3p0</artifactId>
|
||
<version>0.9.1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.jcraft</groupId>
|
||
<artifactId>jsch</artifactId>
|
||
<version>0.1.54</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.mail</groupId>
|
||
<artifactId>mail</artifactId>
|
||
<version>1.4.7</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-beanutils</groupId>
|
||
<artifactId>commons-beanutils</artifactId>
|
||
<version>1.9.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-cli</groupId>
|
||
<artifactId>commons-cli</artifactId>
|
||
<version>1.3.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-codec</groupId>
|
||
<artifactId>commons-codec</artifactId>
|
||
<version>1.10</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-collections</groupId>
|
||
<artifactId>commons-collections</artifactId>
|
||
<version>3.2.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-compress</artifactId>
|
||
<version>1.13</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-configuration</groupId>
|
||
<artifactId>commons-configuration</artifactId>
|
||
<version>1.10</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-daemon</groupId>
|
||
<artifactId>commons-daemon</artifactId>
|
||
<version>1.0.15</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-digester</groupId>
|
||
<artifactId>commons-digester</artifactId>
|
||
<version>2.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-el</groupId>
|
||
<artifactId>commons-el</artifactId>
|
||
<version>1.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
<version>4.5.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>2.5</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-lang</groupId>
|
||
<artifactId>commons-lang</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-logging</groupId>
|
||
<artifactId>commons-logging</artifactId>
|
||
<version>1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-math</artifactId>
|
||
<version>2.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-net</groupId>
|
||
<artifactId>commons-net</artifactId>
|
||
<version>3.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>log4j</groupId>
|
||
<artifactId>log4j</artifactId>
|
||
<version>1.2.17</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.slf4j</groupId>
|
||
<artifactId>slf4j-api</artifactId>
|
||
<version>1.7.24</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>br.eti.kinoshita</groupId>
|
||
<artifactId>testlink-java-api</artifactId>
|
||
<version>1.9.16-0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.xmlrpc</groupId>
|
||
<artifactId>xmlrpc-client</artifactId>
|
||
<version>3.1.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.xmlrpc</groupId>
|
||
<artifactId>xmlrpc-common</artifactId>
|
||
<version>3.1.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.seleniumhq.selenium</groupId>
|
||
<artifactId>selenium-java</artifactId>
|
||
<version>3.3.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.seleniumhq.selenium</groupId>
|
||
<artifactId>selenium-remote-driver</artifactId>
|
||
<version>3.3.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.appium</groupId>
|
||
<artifactId>java-client</artifactId>
|
||
<version>4.1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>xml-apis</groupId>
|
||
<artifactId>xml-apis</artifactId>
|
||
<version>1.4.01</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>6.0.5</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.freemarker</groupId>
|
||
<artifactId>freemarker</artifactId>
|
||
<version>2.3.26-incubating</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.sf.json-lib</groupId>
|
||
<artifactId>json-lib</artifactId>
|
||
<version>2.4</version>
|
||
<classifier>jdk15</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-databind</artifactId>
|
||
<version>2.5.2</version>
|
||
</dependency>
|
||
<!-- hessian -->
|
||
<dependency>
|
||
<groupId>com.caucho</groupId>
|
||
<artifactId>hessian</artifactId>
|
||
<version>3.1.5</version>
|
||
</dependency>
|
||
<!--由于Oracle JDBC驱动包是需要Oracle官方授权才能被下载,如果原maven私库中无此包,请手动添加至私库再在maven中操作update
|
||
project -->
|
||
<!--如果您不需要用到此包,可以注释掉 -->
|
||
<!-- <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId>
|
||
<version>12.1.0.1-atlassian-hosted</version> </dependency> -->
|
||
</dependencies>
|
||
</project>
|