Skip to content

Commit 1869c13

Browse files
authored
Merge pull request #9 from sbabcoc/pr/upgrade-to-htmlunit3-driver-4.22.0
Upgrade to HtmlUnitDriver 4.22.0
2 parents e6db46b + 3d1172a commit 1869c13

File tree

1 file changed

+57
-16
lines changed

1 file changed

+57
-16
lines changed

pom.xml

Lines changed: 57 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,18 @@
2020
<spotbugs.version>4.8.4</spotbugs.version>
2121
<archunit.version>1.3.0</archunit.version>
2222
<dependencycheck.version>9.1.0</dependencycheck.version>
23+
<skipSigning>true</skipSigning>
2324
</properties>
2425

26+
<dependencyManagement>
27+
<dependencies>
28+
<dependency>
29+
<groupId>org.slf4j</groupId>
30+
<artifactId>slf4j-api</artifactId>
31+
<version>1.7.35</version>
32+
</dependency>
33+
</dependencies>
34+
</dependencyManagement>
2535
<dependencies>
2636
<dependency>
2737
<groupId>org.seleniumhq.selenium</groupId>
@@ -41,7 +51,7 @@
4151
<dependency>
4252
<groupId>org.seleniumhq.selenium</groupId>
4353
<artifactId>htmlunit3-driver</artifactId>
44-
<version>4.22.0-SNAPSHOT</version>
54+
<version>${selenium.version}</version>
4555
</dependency>
4656
<dependency>
4757
<groupId>junit</groupId>
@@ -150,21 +160,21 @@
150160
</execution>
151161
</executions>
152162
</plugin>
153-
<plugin>
154-
<groupId>org.owasp</groupId>
155-
<artifactId>dependency-check-maven</artifactId>
156-
<version>${dependencycheck.version}</version>
157-
<configuration>
158-
<failBuildOnCVSS>0</failBuildOnCVSS>
159-
</configuration>
160-
<executions>
161-
<execution>
162-
<goals>
163-
<goal>check</goal>
164-
</goals>
165-
</execution>
166-
</executions>
167-
</plugin>
163+
<!-- <plugin>-->
164+
<!-- <groupId>org.owasp</groupId>-->
165+
<!-- <artifactId>dependency-check-maven</artifactId>-->
166+
<!-- <version>${dependencycheck.version}</version>-->
167+
<!-- <configuration>-->
168+
<!-- <failBuildOnCVSS>0</failBuildOnCVSS>-->
169+
<!-- </configuration>-->
170+
<!-- <executions>-->
171+
<!-- <execution>-->
172+
<!-- <goals>-->
173+
<!-- <goal>check</goal>-->
174+
<!-- </goals>-->
175+
<!-- </execution>-->
176+
<!-- </executions>-->
177+
<!-- </plugin>-->
168178
<plugin>
169179
<groupId>org.apache.maven.plugins</groupId>
170180
<artifactId>maven-assembly-plugin</artifactId>
@@ -208,6 +218,37 @@
208218
</execution>
209219
</executions>
210220
</plugin>
221+
<plugin>
222+
<groupId>org.sonatype.plugins</groupId>
223+
<artifactId>nexus-staging-maven-plugin</artifactId>
224+
<version>1.6.13</version>
225+
<extensions>true</extensions>
226+
<configuration>
227+
<serverId>ossrh</serverId>
228+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
229+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
230+
</configuration>
231+
</plugin>
232+
<plugin>
233+
<groupId>org.apache.maven.plugins</groupId>
234+
<artifactId>maven-release-plugin</artifactId>
235+
<version>3.0.0-M6</version>
236+
<configuration>
237+
<autoVersionSubmodules>true</autoVersionSubmodules>
238+
<useReleaseProfile>false</useReleaseProfile>
239+
<releaseProfiles>release</releaseProfiles>
240+
<goals>deploy</goals>
241+
</configuration>
242+
</plugin>
211243
</plugins>
212244
</build>
245+
246+
<profiles>
247+
<profile>
248+
<id>signing</id>
249+
<properties>
250+
<skipSigning>false</skipSigning>
251+
</properties>
252+
</profile>
253+
</profiles>
213254
</project>

0 commit comments

Comments
 (0)