Skip to content

Commit

Permalink
version 3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Feb 9, 2024
1 parent f178c52 commit ee43ce6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and we added unit tests and the maven-based build.

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

### Latest release Version 3.10.0 / January 14, 2023
### Latest release Version 3.11.0 / February 10, 2024

### Maven

Expand All @@ -25,7 +25,7 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-xpath</artifactId>
<version>3.10.0</version>
<version>3.11.0</version>
</dependency>
```

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

```groovy
implementation group: 'org.htmlunit', name: 'htmlunit-xpath', version: '3.10.0'
implementation group: 'org.htmlunit', name: 'htmlunit-xpath', version: '3.11.0'
```

### Last CI build
Expand All @@ -48,7 +48,7 @@ If you use maven please add:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-xpath</artifactId>
<version>3.11.0-SNAPSHOT</version>
<version>3.12.0-SNAPSHOT</version>
</dependency>

You have to add the sonatype snapshot repository to your pom `repositories` section also:
Expand Down
35 changes: 29 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-xpath</artifactId>
<version>3.10.0</version>
<version>3.11.0</version>
<name>HtmlUnit-XPath</name>
<organization>
<name>HtmlUnit</name>
Expand All @@ -26,14 +26,14 @@
<checkstyle.version>10.12.5</checkstyle.version>
<spotbugs.version>4.8.3</spotbugs.version>
<pmd.version>6.55.0</pmd.version>
<dependencycheck.version>9.0.8</dependencycheck.version>
<dependencycheck.version>9.0.9</dependencycheck.version>
</properties>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.1</version>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -48,11 +48,11 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.5</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -143,7 +143,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.2.0</version>
<version>4.8.3.0</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand Down Expand Up @@ -192,6 +192,29 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6.3</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.8.0</version>
</requireJavaVersion>
<dependencyConvergence />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit ee43ce6

Please sign in to comment.