Skip to content

Commit 6e59f32

Browse files
1 parent 25bda76 commit 6e59f32

File tree

2 files changed

+275
-289
lines changed

2 files changed

+275
-289
lines changed

pom.xml

Lines changed: 133 additions & 148 deletions
Original file line numberDiff line numberDiff line change
@@ -1,148 +1,133 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
6-
<groupId>io.appium</groupId>
7-
<artifactId>java-client</artifactId>
8-
<version>2.0.0</version>
9-
<dependencies>
10-
<dependency>
11-
<groupId>com.google.code.gson</groupId>
12-
<artifactId>gson</artifactId>
13-
<version>2.2.4</version>
14-
</dependency>
15-
<dependency>
16-
<groupId>org.seleniumhq.selenium</groupId>
17-
<artifactId>selenium-java</artifactId>
18-
<version>2.43.1</version>
19-
</dependency>
20-
<dependency>
21-
<groupId>junit</groupId>
22-
<artifactId>junit</artifactId>
23-
<version>4.11</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.apache.httpcomponents</groupId>
27-
<artifactId>httpclient</artifactId>
28-
<version>4.3.3</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>com.google.guava</groupId>
32-
<artifactId>guava</artifactId>
33-
<version>17.0</version>
34-
</dependency>
35-
<dependency>
36-
<groupId>cglib</groupId>
37-
<artifactId>cglib</artifactId>
38-
<version>3.1</version>
39-
</dependency>
40-
<dependency>
41-
<groupId>org.reflections</groupId>
42-
<artifactId>reflections</artifactId>
43-
<version>0.9.8</version>
44-
<exclusions>
45-
<exclusion>
46-
<artifactId>guava</artifactId>
47-
<groupId>com.google.guava</groupId>
48-
</exclusion>
49-
<exclusion>
50-
<artifactId>xml-apis</artifactId>
51-
<groupId>xml-apis</groupId>
52-
</exclusion>
53-
</exclusions>
54-
</dependency>
55-
</dependencies>
56-
<packaging>jar</packaging>
57-
<name>java-client</name>
58-
<description>Java client for Appium Mobile Webdriver</description>
59-
<url>http://appium.io</url>
60-
61-
<licenses>
62-
<license>
63-
<name>Apache License, Version 2.0</name>
64-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
65-
<distribution>repo</distribution>
66-
</license>
67-
</licenses>
68-
69-
<scm>
70-
<url>https://github.com/appium/java-client</url>
71-
<connection>scm:git:git://github.com/appium/java-client.git</connection>
72-
<developerConnection>scm:git:git@github.com:appium/java-client.git</developerConnection>
73-
</scm>
74-
75-
<developers>
76-
<developer>
77-
<email>jonahss@gmail.com</email>
78-
<name>Jonah Stiennon</name>
79-
<url>https://github.com/jonahss</url>
80-
<id>jonahss</id>
81-
</developer>
82-
</developers>
83-
84-
<distributionManagement>
85-
<snapshotRepository>
86-
<id>ossrh</id>
87-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
88-
</snapshotRepository>
89-
<repository>
90-
<id>ossrh</id>
91-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
92-
</repository>
93-
</distributionManagement>
94-
95-
<build>
96-
<plugins>
97-
<plugin>
98-
<groupId>org.apache.maven.plugins</groupId>
99-
<artifactId>maven-source-plugin</artifactId>
100-
<version>2.2.1</version>
101-
<executions>
102-
<execution>
103-
<id>attach-sources</id>
104-
<goals>
105-
<goal>jar-no-fork</goal>
106-
</goals>
107-
</execution>
108-
</executions>
109-
</plugin>
110-
<plugin>
111-
<groupId>org.apache.maven.plugins</groupId>
112-
<artifactId>maven-javadoc-plugin</artifactId>
113-
<version>2.9.1</version>
114-
<executions>
115-
<execution>
116-
<id>attach-javadocs</id>
117-
<goals>
118-
<goal>jar</goal>
119-
</goals>
120-
</execution>
121-
</executions>
122-
</plugin>
123-
<plugin>
124-
<groupId>org.apache.maven.plugins</groupId>
125-
<artifactId>maven-gpg-plugin</artifactId>
126-
<version>1.5</version>
127-
<executions>
128-
<execution>
129-
<id>sign-artifacts</id>
130-
<phase>verify</phase>
131-
<goals>
132-
<goal>sign</goal>
133-
</goals>
134-
</execution>
135-
</executions>
136-
</plugin>
137-
<plugin>
138-
<groupId>org.apache.maven.plugins</groupId>
139-
<artifactId>maven-compiler-plugin</artifactId>
140-
<version>2.3.2</version>
141-
<configuration>
142-
<source>1.7</source>
143-
<target>1.7</target>
144-
</configuration>
145-
</plugin>
146-
</plugins>
147-
</build>
148-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>io.appium</groupId>
7+
<artifactId>java-client</artifactId>
8+
<version>2.0.0</version>
9+
<dependencies>
10+
<dependency>
11+
<groupId>com.google.code.gson</groupId>
12+
<artifactId>gson</artifactId>
13+
<version>2.2.4</version>
14+
</dependency>
15+
<dependency>
16+
<groupId>org.seleniumhq.selenium</groupId>
17+
<artifactId>selenium-java</artifactId>
18+
<version>2.43.1</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<version>4.11</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.apache.httpcomponents</groupId>
27+
<artifactId>httpclient</artifactId>
28+
<version>4.3.3</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.google.guava</groupId>
32+
<artifactId>guava</artifactId>
33+
<version>17.0</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>cglib</groupId>
37+
<artifactId>cglib</artifactId>
38+
<version>3.1</version>
39+
</dependency>
40+
</dependencies>
41+
<packaging>jar</packaging>
42+
<name>java-client</name>
43+
<description>Java client for Appium Mobile Webdriver</description>
44+
<url>http://appium.io</url>
45+
46+
<licenses>
47+
<license>
48+
<name>Apache License, Version 2.0</name>
49+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
50+
<distribution>repo</distribution>
51+
</license>
52+
</licenses>
53+
54+
<scm>
55+
<url>https://github.com/appium/java-client</url>
56+
<connection>scm:git:git://github.com/appium/java-client.git</connection>
57+
<developerConnection>scm:git:git@github.com:appium/java-client.git</developerConnection>
58+
</scm>
59+
60+
<developers>
61+
<developer>
62+
<email>jonahss@gmail.com</email>
63+
<name>Jonah Stiennon</name>
64+
<url>https://github.com/jonahss</url>
65+
<id>jonahss</id>
66+
</developer>
67+
</developers>
68+
69+
<distributionManagement>
70+
<snapshotRepository>
71+
<id>ossrh</id>
72+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
73+
</snapshotRepository>
74+
<repository>
75+
<id>ossrh</id>
76+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
77+
</repository>
78+
</distributionManagement>
79+
80+
<build>
81+
<plugins>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-source-plugin</artifactId>
85+
<version>2.2.1</version>
86+
<executions>
87+
<execution>
88+
<id>attach-sources</id>
89+
<goals>
90+
<goal>jar-no-fork</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-javadoc-plugin</artifactId>
98+
<version>2.9.1</version>
99+
<executions>
100+
<execution>
101+
<id>attach-javadocs</id>
102+
<goals>
103+
<goal>jar</goal>
104+
</goals>
105+
</execution>
106+
</executions>
107+
</plugin>
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-gpg-plugin</artifactId>
111+
<version>1.5</version>
112+
<executions>
113+
<execution>
114+
<id>sign-artifacts</id>
115+
<phase>verify</phase>
116+
<goals>
117+
<goal>sign</goal>
118+
</goals>
119+
</execution>
120+
</executions>
121+
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-compiler-plugin</artifactId>
125+
<version>2.3.2</version>
126+
<configuration>
127+
<source>1.7</source>
128+
<target>1.7</target>
129+
</configuration>
130+
</plugin>
131+
</plugins>
132+
</build>
133+
</project>

0 commit comments

Comments
 (0)