|
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>3.0.0-SNAPSHOT</revision> |
20 | | - <log4j.version>2.22.1</log4j.version> |
| 19 | + <revision>4.0.0-SNAPSHOT</revision> |
| 20 | + <log4j.version>2.23.0</log4j.version> |
21 | 21 | </properties> |
22 | 22 |
|
23 | 23 | <distributionManagement> |
|
104 | 104 | <dependency> |
105 | 105 | <groupId>org.testng</groupId> |
106 | 106 | <artifactId>testng</artifactId> |
107 | | - <version>7.5.1</version> |
| 107 | + <version>7.9.0</version> |
108 | 108 | <scope>test</scope> |
109 | 109 | </dependency> |
110 | 110 | <dependency> |
111 | 111 | <groupId>com.google.inject</groupId> |
112 | 112 | <artifactId>guice</artifactId> |
113 | 113 | <version>6.0.0</version> |
| 114 | + <exclusions> |
| 115 | + <exclusion> |
| 116 | + <groupId>com.google.guava</groupId> |
| 117 | + <artifactId>guava</artifactId> |
| 118 | + </exclusion> |
| 119 | + </exclusions> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>com.google.guava</groupId> |
| 123 | + <artifactId>guava</artifactId> |
| 124 | + <version>33.0.0-jre</version> |
114 | 125 | </dependency> |
115 | 126 | <dependency> |
116 | 127 | <groupId>com.fasterxml.jackson.core</groupId> |
|
120 | 131 | <dependency> |
121 | 132 | <groupId>org.seleniumhq.selenium</groupId> |
122 | 133 | <artifactId>selenium-java</artifactId> |
123 | | - <version>4.13.0</version> |
| 134 | + <version>4.18.1</version> |
124 | 135 | </dependency> |
125 | 136 | <dependency> |
126 | 137 | <groupId>io.appium</groupId> |
127 | 138 | <artifactId>java-client</artifactId> |
128 | | - <version>8.6.0</version> |
| 139 | + <version>9.1.0</version> |
| 140 | + <scope>test</scope> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>org.apache.commons</groupId> |
| 144 | + <artifactId>commons-lang3</artifactId> |
| 145 | + <version>3.14.0</version> |
129 | 146 | <scope>test</scope> |
130 | 147 | </dependency> |
131 | 148 | </dependencies> |
|
135 | 152 | <plugin> |
136 | 153 | <groupId>org.apache.maven.plugins</groupId> |
137 | 154 | <artifactId>maven-compiler-plugin</artifactId> |
138 | | - <version>3.1</version> |
| 155 | + <version>3.12.1</version> |
139 | 156 | <configuration> |
140 | | - <source>1.8</source> |
141 | | - <target>1.8</target> |
| 157 | + <source>11</source> |
| 158 | + <target>11</target> |
142 | 159 | </configuration> |
143 | 160 | </plugin> |
144 | 161 | <plugin> |
145 | 162 | <groupId>org.jacoco</groupId> |
146 | 163 | <artifactId>jacoco-maven-plugin</artifactId> |
147 | | - <version>0.8.4</version> |
| 164 | + <version>0.8.11</version> |
148 | 165 | <executions> |
149 | 166 | <execution> |
150 | 167 | <id>pre-unit-test</id> |
|
172 | 189 | <plugin> |
173 | 190 | <groupId>org.apache.maven.plugins</groupId> |
174 | 191 | <artifactId>maven-surefire-plugin</artifactId> |
175 | | - <version>2.20</version> |
| 192 | + <version>3.2.5</version> |
176 | 193 | <configuration> |
177 | 194 | <argLine>${surefireArgLine} -Dfile.encoding=UTF-8</argLine> |
178 | 195 | <reuseForks>false</reuseForks> |
|
201 | 218 | <plugin> |
202 | 219 | <groupId>org.apache.maven.plugins</groupId> |
203 | 220 | <artifactId>maven-source-plugin</artifactId> |
| 221 | + <version>3.3.0</version> |
204 | 222 | <executions> |
205 | 223 | <execution> |
206 | 224 | <id>attach-sources</id> |
|
213 | 231 | <plugin> |
214 | 232 | <groupId>org.apache.maven.plugins</groupId> |
215 | 233 | <artifactId>maven-javadoc-plugin</artifactId> |
| 234 | + <version>3.6.3</version> |
216 | 235 | <configuration> |
217 | | - <source>8</source> |
| 236 | + <source>11</source> |
218 | 237 | </configuration> |
219 | 238 | <executions> |
220 | 239 | <execution> |
|
228 | 247 | <plugin> |
229 | 248 | <groupId>org.apache.maven.plugins</groupId> |
230 | 249 | <artifactId>maven-gpg-plugin</artifactId> |
231 | | - <version>1.6</version> |
| 250 | + <version>3.1.0</version> |
232 | 251 | <executions> |
233 | 252 | <execution> |
234 | 253 | <id>sign-artifacts</id> |
|
248 | 267 | <plugin> |
249 | 268 | <groupId>org.sonatype.plugins</groupId> |
250 | 269 | <artifactId>nexus-staging-maven-plugin</artifactId> |
251 | | - <version>1.6.8</version> |
| 270 | + <version>1.6.13</version> |
252 | 271 | <extensions>true</extensions> |
253 | 272 | <configuration> |
254 | 273 | <serverId>ossrh</serverId> |
|
0 commit comments