Skip to content

Commit dee5914

Browse files
authored
Remove WebDriverManager dependency and update to Selenium 4.13.0 (#132)
- As now built-in Selenium Manager allows to download driver, we don't need to maintain webDriverManager dependency. - updated core library to use Selenium 4.13.0 (latest compatible with Java 8) - removed jackson-databind dependency - update testng to 7.5.1 (latest compatible with Java 8) - added commons-lang dependency - add workflow to automatically deploy to maven central after PR merge
1 parent 15dfe95 commit dee5914

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
<distributionManagement>
2222
<snapshotRepository>
2323
<id>ossrh</id>
24-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
24+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
2525
</snapshotRepository>
2626
<repository>
2727
<id>ossrh</id>
28-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
28+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2929
</repository>
3030
</distributionManagement>
3131

@@ -224,7 +224,7 @@
224224
<extensions>true</extensions>
225225
<configuration>
226226
<serverId>ossrh</serverId>
227-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
227+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
228228
<autoReleaseAfterClose>true</autoReleaseAfterClose>
229229
</configuration>
230230
</plugin>

0 commit comments

Comments
 (0)