|
16 | 16 | <properties>
|
17 | 17 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
19 |
| - <revision>4.0.0-SNAPSHOT</revision> |
| 19 | + <revision>5.0.0-SNAPSHOT</revision> |
20 | 20 | </properties>
|
21 | 21 |
|
22 | 22 | <distributionManagement>
|
|
73 | 73 | <groupId>org.apache.maven.plugins</groupId>
|
74 | 74 | <artifactId>maven-compiler-plugin</artifactId>
|
75 | 75 | <configuration>
|
76 |
| - <source>8</source> |
77 |
| - <target>8</target> |
| 76 | + <source>11</source> |
| 77 | + <target>11</target> |
78 | 78 | </configuration>
|
79 | 79 | </plugin>
|
80 | 80 | <plugin>
|
81 | 81 | <groupId>org.jacoco</groupId>
|
82 | 82 | <artifactId>jacoco-maven-plugin</artifactId>
|
83 |
| - <version>0.8.4</version> |
| 83 | + <version>0.8.11</version> |
84 | 84 | <executions>
|
85 | 85 | <execution>
|
86 | 86 | <id>pre-unit-test</id>
|
|
125 | 125 | <plugin>
|
126 | 126 | <groupId>org.apache.maven.plugins</groupId>
|
127 | 127 | <artifactId>maven-source-plugin</artifactId>
|
| 128 | + <version>3.3.0</version> |
128 | 129 | <executions>
|
129 | 130 | <execution>
|
130 | 131 | <id>attach-sources</id>
|
|
137 | 138 | <plugin>
|
138 | 139 | <groupId>org.apache.maven.plugins</groupId>
|
139 | 140 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 141 | + <version>3.6.3</version> |
| 142 | + <configuration> |
| 143 | + <source>11</source> |
| 144 | + </configuration> |
140 | 145 | <executions>
|
141 | 146 | <execution>
|
142 | 147 | <id>attach-javadocs</id>
|
|
149 | 154 | <plugin>
|
150 | 155 | <groupId>org.apache.maven.plugins</groupId>
|
151 | 156 | <artifactId>maven-gpg-plugin</artifactId>
|
152 |
| - <version>1.6</version> |
| 157 | + <version>3.1.0</version> |
153 | 158 | <executions>
|
154 | 159 | <execution>
|
155 | 160 | <id>sign-artifacts</id>
|
|
169 | 174 | <plugin>
|
170 | 175 | <groupId>org.sonatype.plugins</groupId>
|
171 | 176 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
172 |
| - <version>1.6.8</version> |
| 177 | + <version>1.6.13</version> |
173 | 178 | <extensions>true</extensions>
|
174 | 179 | <configuration>
|
175 | 180 | <serverId>ossrh</serverId>
|
|
184 | 189 | <dependency>
|
185 | 190 | <groupId>com.github.aquality-automation</groupId>
|
186 | 191 | <artifactId>aquality-selenium-core</artifactId>
|
187 |
| - <version>3.1.1</version> |
| 192 | + <version>4.0.0</version> |
188 | 193 | </dependency>
|
189 | 194 |
|
190 | 195 | <dependency>
|
191 | 196 | <groupId>io.appium</groupId>
|
192 | 197 | <artifactId>java-client</artifactId>
|
193 |
| - <version>8.6.0</version> |
| 198 | + <version>9.1.0</version> |
194 | 199 | </dependency>
|
195 | 200 |
|
196 | 201 | <dependency>
|
197 | 202 | <groupId>org.testng</groupId>
|
198 | 203 | <artifactId>testng</artifactId>
|
199 |
| - <version>7.5.1</version> |
| 204 | + <version>7.9.0</version> |
| 205 | + <scope>test</scope> |
| 206 | + </dependency> |
| 207 | + |
| 208 | + <dependency> |
| 209 | + <groupId>org.apache.commons</groupId> |
| 210 | + <artifactId>commons-lang3</artifactId> |
| 211 | + <version>3.14.0</version> |
| 212 | + <scope>test</scope> |
| 213 | + </dependency> |
| 214 | + |
| 215 | + <dependency> |
| 216 | + <groupId>commons-io</groupId> |
| 217 | + <artifactId>commons-io</artifactId> |
| 218 | + <version>2.15.1</version> |
200 | 219 | <scope>test</scope>
|
201 | 220 | </dependency>
|
202 | 221 |
|
|
0 commit comments