|
6 | 6 |
|
7 | 7 | <groupId>com.github.aquality-automation</groupId>
|
8 | 8 | <artifactId>aquality-selenium-core</artifactId>
|
9 |
| - <version>${revision}</version> |
| 9 | + <version>4.0.0</version> |
10 | 10 |
|
11 | 11 | <packaging>jar</packaging>
|
12 | 12 | <name>Aquality Selenium Core</name>
|
|
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> |
20 |
| - <log4j.version>2.24.3</log4j.version> |
| 19 | + <log4j.version>2.25.1</log4j.version> |
21 | 20 | </properties>
|
22 | 21 |
|
23 |
| - <distributionManagement> |
24 |
| - <snapshotRepository> |
25 |
| - <id>ossrh</id> |
26 |
| - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
27 |
| - </snapshotRepository> |
28 |
| - <repository> |
29 |
| - <id>ossrh</id> |
30 |
| - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
31 |
| - </repository> |
32 |
| - </distributionManagement> |
33 |
| - |
34 | 22 | <scm>
|
35 | 23 | < connection>scm:git: [email protected]:aquality-automation/aquality-selenium-core-java.git</ connection>
|
36 | 24 | < developerConnection>scm:git: [email protected]:aquality-automation/aquality-selenium-core-java.git</ developerConnection>
|
|
131 | 119 | <dependency>
|
132 | 120 | <groupId>org.seleniumhq.selenium</groupId>
|
133 | 121 | <artifactId>selenium-java</artifactId>
|
134 |
| - <version>4.33.0</version> |
| 122 | + <version>4.34.0</version> |
135 | 123 | </dependency>
|
136 | 124 | <dependency>
|
137 | 125 | <groupId>io.appium</groupId>
|
138 | 126 | <artifactId>java-client</artifactId>
|
139 |
| - <version>9.4.0</version> |
| 127 | + <version>9.5.0</version> |
140 | 128 | <scope>test</scope>
|
141 | 129 | </dependency>
|
142 | 130 | <dependency>
|
143 | 131 | <groupId>org.apache.commons</groupId>
|
144 | 132 | <artifactId>commons-lang3</artifactId>
|
145 |
| - <version>3.17.0</version> |
| 133 | + <version>3.18.0</version> |
146 | 134 | <scope>test</scope>
|
147 | 135 | </dependency>
|
148 | 136 | </dependencies>
|
|
152 | 140 | <plugin>
|
153 | 141 | <groupId>org.apache.maven.plugins</groupId>
|
154 | 142 | <artifactId>maven-compiler-plugin</artifactId>
|
155 |
| - <version>3.13.0</version> |
| 143 | + <version>3.14.0</version> |
156 | 144 | <configuration>
|
157 | 145 | <source>11</source>
|
158 | 146 | <target>11</target>
|
|
161 | 149 | <plugin>
|
162 | 150 | <groupId>org.jacoco</groupId>
|
163 | 151 | <artifactId>jacoco-maven-plugin</artifactId>
|
164 |
| - <version>0.8.12</version> |
| 152 | + <version>0.8.13</version> |
165 | 153 | <executions>
|
166 | 154 | <execution>
|
167 | 155 | <id>pre-unit-test</id>
|
|
189 | 177 | <plugin>
|
190 | 178 | <groupId>org.apache.maven.plugins</groupId>
|
191 | 179 | <artifactId>maven-surefire-plugin</artifactId>
|
192 |
| - <version>3.5.2</version> |
| 180 | + <version>3.5.3</version> |
193 | 181 | <configuration>
|
194 | 182 | <argLine>${surefireArgLine} -Dfile.encoding=UTF-8</argLine>
|
195 | 183 | <reuseForks>false</reuseForks>
|
|
201 | 189 | <plugin>
|
202 | 190 | <groupId>org.apache.maven.plugins</groupId>
|
203 | 191 | <artifactId>maven-assembly-plugin</artifactId>
|
| 192 | + <version>3.7.1</version> |
204 | 193 | <executions>
|
205 | 194 | <execution>
|
206 | 195 | <goals>
|
|
231 | 220 | <plugin>
|
232 | 221 | <groupId>org.apache.maven.plugins</groupId>
|
233 | 222 | <artifactId>maven-javadoc-plugin</artifactId>
|
234 |
| - <version>3.11.1</version> |
| 223 | + <version>3.11.2</version> |
235 | 224 | <configuration>
|
236 | 225 | <source>11</source>
|
237 | 226 | </configuration>
|
|
247 | 236 | <plugin>
|
248 | 237 | <groupId>org.apache.maven.plugins</groupId>
|
249 | 238 | <artifactId>maven-gpg-plugin</artifactId>
|
250 |
| - <version>3.2.7</version> |
| 239 | + <version>3.2.8</version> |
251 | 240 | <executions>
|
252 | 241 | <execution>
|
253 | 242 | <id>sign-artifacts</id>
|
|
265 | 254 | </executions>
|
266 | 255 | </plugin>
|
267 | 256 | <plugin>
|
268 |
| - <groupId>org.sonatype.plugins</groupId> |
269 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
270 |
| - <version>1.7.0</version> |
| 257 | + <groupId>org.sonatype.central</groupId> |
| 258 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 259 | + <version>0.8.0</version> |
271 | 260 | <extensions>true</extensions>
|
272 | 261 | <configuration>
|
273 |
| - <serverId>ossrh</serverId> |
274 |
| - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
275 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 262 | + <publishingServerId>central</publishingServerId> |
| 263 | + <autoPublish>true</autoPublish> |
| 264 | + <waitUntil>published</waitUntil> |
276 | 265 | </configuration>
|
277 | 266 | </plugin>
|
| 267 | + <plugin> |
| 268 | + <groupId>org.codehaus.mojo</groupId> |
| 269 | + <artifactId>versions-maven-plugin</artifactId> |
| 270 | + <version>2.18.0</version> |
| 271 | + </plugin> |
278 | 272 | </plugins>
|
279 | 273 | </build>
|
280 | 274 | </project>
|
0 commit comments