-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
110 lines (103 loc) · 4.05 KB
/
pom.xml
File metadata and controls
110 lines (103 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.timeinvestor.test</groupId>
<artifactId>test-automation</artifactId>
<packaging>jar</packaging>
<version>1.1.1</version>
<name>TestAutomation</name>
<url>https://github.com/TimeInvestor/TestAutomation.git</url>
<scm>
<url>https://github.com/TimeInvestor/TestAutomation.git</url>
<connection>scm:git@github.com:TimeInvestor/TestAutomation.git</connection>
<developerConnection>scm:git@github.com:TimeInvestor/TestAutomation.git</developerConnection>
</scm>
<licenses>
<license>
<name>The MIT License</name>
<url>https://raw.githubusercontent.com/visenze/visearch-sdk-java/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>TimeInvestor</id>
<name>Zheng Lisheng</name>
</developer>
</developers>
<properties>
<!-- Enforce Java compile version -->
<jdk.version>1.7</jdk.version>
<!-- Enforce encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Dependency versions -->
<testng.version>6.9.6</testng.version>
<log4j.version>2.3</log4j.version>
<surefire.version>2.18.1</surefire.version>
<selenium.version>2.47.1</selenium.version>
<mysql.version>5.1.36</mysql.version>
<jersey.version>2.21</jersey.version>
<org.json.version>20141113</org.json.version>
<!-- TestNG test suites -->
<suiteXmlFile>src/test/resources/testsuite/componenttest.xml</suiteXmlFile>
<skipTests>false</skipTests>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${org.json.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
</suiteXmlFiles>
<skipTests>${skipTests}</skipTests>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
</project>