Skip to content

Commit 420d312

Browse files
authored
Merge pull request #1 from ITArray/master
Code update from original source
2 parents b329693 + 9dbd88f commit 420d312

File tree

198 files changed

+13902
-3487
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+13902
-3487
lines changed

LICENSE-2.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176

177177
END OF TERMS AND CONDITIONS
178178

179-
Copyright 2016 Denys Zaiats
179+
Copyright 2016-2017 Denys Zaiats
180180

181181
Licensed under the Apache License, Version 2.0 (the "License");
182182
you may not use this file except in compliance with the License.

pom.xml

Lines changed: 88 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
<groupId>net.itarray</groupId>
88
<artifactId>automotion</artifactId>
9-
<version>1.4.6</version>
9+
<version>2.2.0</version>
1010
<name>Automotion</name>
11-
<description>Library for automation testing</description>
12-
<url>https://www.itarray.net</url>
11+
<description>Library for smart visual automation testing</description>
12+
<url>https://automotion.itarray.net</url>
1313

1414
<licenses>
1515
<license>
@@ -22,7 +22,7 @@
2222
<developer>
2323
<name>ITArray</name>
2424
<email>denys.zaiats@gmail.com</email>
25-
<organization>FACEY.TOP</organization>
25+
<organization>ITArray</organization>
2626
<organizationUrl>https://www.itarray.net</organizationUrl>
2727
</developer>
2828
</developers>
@@ -58,7 +58,7 @@
5858
<plugin>
5959
<groupId>org.sonatype.plugins</groupId>
6060
<artifactId>nexus-staging-maven-plugin</artifactId>
61-
<version>1.6.3</version>
61+
<version>1.6.7</version>
6262
<extensions>true</extensions>
6363
<configuration>
6464
<serverId>ossrh</serverId>
@@ -82,7 +82,20 @@
8282
</execution>
8383
</executions>
8484
</plugin>
85-
85+
<plugin>
86+
<groupId>net.itarray</groupId>
87+
<artifactId>automotion-maven-plugin</artifactId>
88+
<version>1.0.5</version>
89+
<!--<executions>-->
90+
<!--<execution>-->
91+
<!--<id>automotion</id>-->
92+
<!--<phase>install</phase>-->
93+
<!--<goals>-->
94+
<!--<goal>automotion-report</goal>-->
95+
<!--</goals>-->
96+
<!--</execution>-->
97+
<!--</executions>-->
98+
</plugin>
8699
<plugin>
87100
<groupId>org.apache.maven.plugins</groupId>
88101
<artifactId>maven-javadoc-plugin</artifactId>
@@ -96,9 +109,42 @@
96109
</executions>
97110
<configuration>
98111
<additionalparam>-Xdoclint:none</additionalparam>
112+
<javadocDirectory>${project.basedir}/target/generated-sources/apidocs</javadocDirectory>
113+
<failOnError>false</failOnError>
114+
<excludePackageNames>net.itarray.automotion.internal:net.itarray.automotion.internal.*
115+
</excludePackageNames>
99116
</configuration>
100117
</plugin>
101-
118+
<plugin>
119+
<groupId>org.pitest</groupId>
120+
<artifactId>pitest-maven</artifactId>
121+
<version>1.2.2</version>
122+
</plugin>
123+
<plugin>
124+
<groupId>org.codehaus.mojo</groupId>
125+
<artifactId>exec-maven-plugin</artifactId>
126+
<version>1.2.1</version>
127+
<executions>
128+
<execution>
129+
<id>compress-facelets</id>
130+
<phase>prepare-package</phase>
131+
<goals>
132+
<goal>java</goal>
133+
</goals>
134+
<configuration>
135+
<mainClass>net.itarray.automotion.JavadocImageGenerator</mainClass>
136+
<arguments>
137+
<argument>${project.basedir}/target</argument>
138+
</arguments>
139+
</configuration>
140+
</execution>
141+
</executions>
142+
</plugin>
143+
<plugin>
144+
<groupId>net.itarray</groupId>
145+
<artifactId>automotion-maven-plugin</artifactId>
146+
<version>1.0.5</version>
147+
</plugin>
102148
</plugins>
103149
</build>
104150

@@ -117,37 +163,42 @@
117163
<dependency>
118164
<groupId>org.seleniumhq.selenium</groupId>
119165
<artifactId>selenium-java</artifactId>
120-
<version>3.4.0</version>
166+
<version>3.141.59</version>
121167
</dependency>
122168
<dependency>
123169
<groupId>org.seleniumhq.selenium</groupId>
124170
<artifactId>selenium-server</artifactId>
125-
<version>3.4.0</version>
171+
<version>3.141.59</version>
126172
</dependency>
127173
<dependency>
128174
<groupId>org.seleniumhq.selenium</groupId>
129175
<artifactId>selenium-remote-driver</artifactId>
130-
<version>3.4.0</version>
176+
<version>3.141.59</version>
131177
</dependency>
132178
<dependency>
133179
<groupId>io.appium</groupId>
134180
<artifactId>java-client</artifactId>
135-
<version>4.1.2</version>
181+
<version>7.0.0</version>
136182
</dependency>
137183
<dependency>
138184
<groupId>com.google.guava</groupId>
139185
<artifactId>guava</artifactId>
140-
<version>21.0</version>
186+
<version>24.0-jre</version>
141187
</dependency>
142188
<dependency>
143189
<groupId>org.apache.httpcomponents</groupId>
144190
<artifactId>httpclient</artifactId>
145-
<version>4.5.3</version>
191+
<version>4.5.6</version>
146192
</dependency>
147193
<dependency>
148194
<groupId>org.apache.httpcomponents</groupId>
149195
<artifactId>httpmime</artifactId>
150-
<version>4.5.3</version>
196+
<version>4.5.6</version>
197+
</dependency>
198+
<dependency>
199+
<groupId>org.apache.commons</groupId>
200+
<artifactId>commons-math3</artifactId>
201+
<version>3.6.1</version>
151202
</dependency>
152203
<dependency>
153204
<groupId>com.googlecode.json-simple</groupId>
@@ -161,9 +212,15 @@
161212
</dependency>
162213
<dependency>
163214
<groupId>javax.mail</groupId>
164-
<artifactId>mail</artifactId>
165-
<version>1.4.7</version>
215+
<artifactId>javax.mail-api</artifactId>
216+
<version>1.6.2</version>
166217
</dependency>
218+
<dependency>
219+
<groupId>ru.yandex.qatools.ashot</groupId>
220+
<artifactId>ashot</artifactId>
221+
<version>1.5.4</version>
222+
</dependency>
223+
167224
<dependency>
168225
<groupId>com.optimaize.languagedetector</groupId>
169226
<artifactId>language-detector</artifactId>
@@ -172,7 +229,7 @@
172229
<dependency>
173230
<groupId>com.codeborne</groupId>
174231
<artifactId>phantomjsdriver</artifactId>
175-
<version>1.4.3</version>
232+
<version>1.4.4</version>
176233
<exclusions>
177234
<exclusion>
178235
<groupId>org.seleniumhq.selenium</groupId>
@@ -191,12 +248,24 @@
191248
<dependency>
192249
<groupId>com.webfirmframework</groupId>
193250
<artifactId>wffweb</artifactId>
194-
<version>2.1.8</version>
251+
<version>3.0.0</version>
195252
</dependency>
196253
<dependency>
197254
<groupId>org.assertj</groupId>
198255
<artifactId>assertj-core</artifactId>
199-
<version>3.2.0</version>
256+
<version>3.11.1</version>
257+
<scope>test</scope>
258+
</dependency>
259+
<dependency>
260+
<groupId>org.mockito</groupId>
261+
<artifactId>mockito-core</artifactId>
262+
<version>2.23.4</version>
263+
<scope>test</scope>
264+
</dependency>
265+
<dependency>
266+
<groupId>junit</groupId>
267+
<artifactId>junit</artifactId>
268+
<version>4.12</version>
200269
<scope>test</scope>
201270
</dependency>
202271
</dependencies>

0 commit comments

Comments
 (0)