Skip to content

Commit ee43ce6

Browse files
committed
version 3.11.0
1 parent f178c52 commit ee43ce6

File tree

2 files changed

+33
-10
lines changed

2 files changed

+33
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and we added unit tests and the maven-based build.
1515

1616
[HtmlUnit@mastodon][4] | [HtmlUnit@Twitter][3]
1717

18-
### Latest release Version 3.10.0 / January 14, 2023
18+
### Latest release Version 3.11.0 / February 10, 2024
1919

2020
### Maven
2121

@@ -25,7 +25,7 @@ Add to your `pom.xml`:
2525
<dependency>
2626
<groupId>org.htmlunit</groupId>
2727
<artifactId>htmlunit-xpath</artifactId>
28-
<version>3.10.0</version>
28+
<version>3.11.0</version>
2929
</dependency>
3030
```
3131

@@ -34,7 +34,7 @@ Add to your `pom.xml`:
3434
Add to your `build.gradle`:
3535

3636
```groovy
37-
implementation group: 'org.htmlunit', name: 'htmlunit-xpath', version: '3.10.0'
37+
implementation group: 'org.htmlunit', name: 'htmlunit-xpath', version: '3.11.0'
3838
```
3939

4040
### Last CI build
@@ -48,7 +48,7 @@ If you use maven please add:
4848
<dependency>
4949
<groupId>org.htmlunit</groupId>
5050
<artifactId>htmlunit-xpath</artifactId>
51-
<version>3.11.0-SNAPSHOT</version>
51+
<version>3.12.0-SNAPSHOT</version>
5252
</dependency>
5353

5454
You have to add the sonatype snapshot repository to your pom `repositories` section also:

pom.xml

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.htmlunit</groupId>
66
<artifactId>htmlunit-xpath</artifactId>
7-
<version>3.10.0</version>
7+
<version>3.11.0</version>
88
<name>HtmlUnit-XPath</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -26,14 +26,14 @@
2626
<checkstyle.version>10.12.5</checkstyle.version>
2727
<spotbugs.version>4.8.3</spotbugs.version>
2828
<pmd.version>6.55.0</pmd.version>
29-
<dependencycheck.version>9.0.8</dependencycheck.version>
29+
<dependencycheck.version>9.0.9</dependencycheck.version>
3030
</properties>
3131

3232
<dependencies>
3333
<dependency>
3434
<groupId>org.junit.jupiter</groupId>
3535
<artifactId>junit-jupiter-engine</artifactId>
36-
<version>5.10.1</version>
36+
<version>5.10.2</version>
3737
<scope>test</scope>
3838
</dependency>
3939
<dependency>
@@ -48,11 +48,11 @@
4848
<plugins>
4949
<plugin>
5050
<artifactId>maven-compiler-plugin</artifactId>
51-
<version>3.11.0</version>
51+
<version>3.12.1</version>
5252
</plugin>
5353
<plugin>
5454
<artifactId>maven-surefire-plugin</artifactId>
55-
<version>3.2.2</version>
55+
<version>3.2.5</version>
5656
</plugin>
5757
<plugin>
5858
<artifactId>maven-jar-plugin</artifactId>
@@ -143,7 +143,7 @@
143143
<plugin>
144144
<groupId>com.github.spotbugs</groupId>
145145
<artifactId>spotbugs-maven-plugin</artifactId>
146-
<version>4.8.2.0</version>
146+
<version>4.8.3.0</version>
147147
<dependencies>
148148
<dependency>
149149
<groupId>com.github.spotbugs</groupId>
@@ -192,6 +192,29 @@
192192
</execution>
193193
</executions>
194194
</plugin>
195+
<plugin>
196+
<groupId>org.apache.maven.plugins</groupId>
197+
<artifactId>maven-enforcer-plugin</artifactId>
198+
<version>3.4.1</version>
199+
<executions>
200+
<execution>
201+
<configuration>
202+
<rules>
203+
<requireMavenVersion>
204+
<version>3.6.3</version>
205+
</requireMavenVersion>
206+
<requireJavaVersion>
207+
<version>1.8.0</version>
208+
</requireJavaVersion>
209+
<dependencyConvergence />
210+
</rules>
211+
</configuration>
212+
<goals>
213+
<goal>enforce</goal>
214+
</goals>
215+
</execution>
216+
</executions>
217+
</plugin>
195218
</plugins>
196219
</build>
197220

0 commit comments

Comments
 (0)