|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>macaca.webdriver.client</groupId> |
5 | | - <artifactId>macacatestsample</artifactId> |
6 | | - <packaging>jar</packaging> |
7 | | - <version>1.0.1</version> |
8 | | - <name>macacatestsample</name> |
9 | | - <url>http://maven.apache.org</url> |
10 | | - <build> |
11 | | - <plugins> |
12 | | - <plugin> |
13 | | - <groupId>org.apache.maven.plugins</groupId> |
14 | | - <artifactId>maven-compiler-plugin</artifactId> |
15 | | - <configuration> |
16 | | - <source>1.5</source> |
17 | | - <target>1.5</target> |
18 | | - </configuration> |
19 | | - </plugin> |
20 | | - </plugins> |
21 | | - </build> |
22 | | - <dependencies> |
23 | | - <dependency> |
24 | | - <groupId>macaca.webdriver.client</groupId> |
25 | | - <artifactId>macacaclient</artifactId> |
26 | | - <version>2.0.13</version> |
27 | | - </dependency> |
28 | | - <dependency> |
29 | | - <groupId>com.alibaba</groupId> |
30 | | - <artifactId>fastjson</artifactId> |
31 | | - <version>1.2.15</version> |
32 | | - </dependency> |
33 | | - <dependency> |
34 | | - <groupId>org.apache.httpcomponents</groupId> |
35 | | - <artifactId>httpclient</artifactId> |
36 | | - <version>4.5.2</version> |
37 | | - </dependency> |
38 | | - <dependency> |
39 | | - <groupId>log4j</groupId> |
40 | | - <artifactId>log4j</artifactId> |
41 | | - <version>1.2.17</version> |
42 | | - </dependency> |
43 | | - <dependency> |
44 | | - <groupId>junit</groupId> |
45 | | - <artifactId>junit</artifactId> |
46 | | - <version>4.12</version> |
47 | | - </dependency> |
48 | | - <dependency> |
49 | | - <groupId>org.hamcrest</groupId> |
50 | | - <artifactId>hamcrest-library</artifactId> |
51 | | - <version>1.2</version> |
52 | | - </dependency> |
53 | | - </dependencies> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>macaca.webdriver.client</groupId> |
| 5 | + <artifactId>macacatestsample</artifactId> |
| 6 | + <packaging>jar</packaging> |
| 7 | + <version>1.0.1</version> |
| 8 | + <name>macacatestsample</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + <build> |
| 11 | + <plugins> |
| 12 | + <plugin> |
| 13 | + <groupId>org.apache.maven.plugins</groupId> |
| 14 | + <artifactId>maven-compiler-plugin</artifactId> |
| 15 | + <configuration> |
| 16 | + <source>1.5</source> |
| 17 | + <target>1.5</target> |
| 18 | + </configuration> |
| 19 | + </plugin> |
| 20 | + <plugin> |
| 21 | + <groupId>org.apache.maven.plugins</groupId> |
| 22 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 23 | + <version>2.17</version> |
| 24 | + <executions> |
| 25 | + <execution> |
| 26 | + <id>validate</id> |
| 27 | + <phase>validate</phase> |
| 28 | + <configuration> |
| 29 | + <configLocation>checkstyle.xml</configLocation> |
| 30 | + <encoding>UTF-8</encoding> |
| 31 | + <consoleOutput>true</consoleOutput> |
| 32 | + <failsOnError>true</failsOnError> |
| 33 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 34 | + </configuration> |
| 35 | + <goals> |
| 36 | + <goal>check</goal> |
| 37 | + </goals> |
| 38 | + </execution> |
| 39 | + </executions> |
| 40 | + </plugin> |
| 41 | + </plugins> |
| 42 | + </build> |
| 43 | + <dependencies> |
| 44 | + <dependency> |
| 45 | + <groupId>macaca.webdriver.client</groupId> |
| 46 | + <artifactId>macacaclient</artifactId> |
| 47 | + <version>2.0.13</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>com.alibaba</groupId> |
| 51 | + <artifactId>fastjson</artifactId> |
| 52 | + <version>1.2.15</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.apache.httpcomponents</groupId> |
| 56 | + <artifactId>httpclient</artifactId> |
| 57 | + <version>4.5.2</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>log4j</groupId> |
| 61 | + <artifactId>log4j</artifactId> |
| 62 | + <version>1.2.17</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>junit</groupId> |
| 66 | + <artifactId>junit</artifactId> |
| 67 | + <version>4.12</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.hamcrest</groupId> |
| 71 | + <artifactId>hamcrest-library</artifactId> |
| 72 | + <version>1.2</version> |
| 73 | + </dependency> |
| 74 | + </dependencies> |
54 | 75 | </project> |
0 commit comments