Skip to content

Commit 3593bbd

Browse files
committed
prepare version 2.65.0
1 parent f055bc8 commit 3593bbd

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ seems to end somewhere around 2014 we started our own fork that now has many imp
1212
### Project News
1313
[HtmlUnit@Twitter][3]
1414

15-
### Latest release Version 2.64.0 / August 18, 2022
15+
### Latest release Version 2.65.0 / October 02, 2022
1616

1717
#### CVE-2022-29546
1818
#### HtmlUnit - NekoHtml Parser suffers from a denial of service vulnerability on versions 2.60.0 and below. A specifically crafted input regarding the parsing of processing instructions leads to heap memory consumption. Please update to at least version 2.62.0.
@@ -22,7 +22,7 @@ For maven, you would add:
2222
<dependency>
2323
<groupId>net.sourceforge.htmlunit</groupId>
2424
<artifactId>neko-htmlunit</artifactId>
25-
<version>2.64.0</version>
25+
<version>2.65.0</version>
2626
</dependency>
2727

2828
### Latest CI build

pom.xml

+17-20
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>net.sourceforge.htmlunit</groupId>
77
<artifactId>neko-htmlunit</artifactId>
8-
<version>2.65.0-SNAPSHOT</version>
8+
<version>2.65.0</version>
99
<name>HtmlUnit NekoHtml</name>
1010
<organization>
1111
<name>Gargoyle Software Inc.</name>
@@ -25,22 +25,34 @@
2525
<maven.compiler.target>8</maven.compiler.target>
2626
</properties>
2727

28+
<dependencies>
29+
<dependency>
30+
<groupId>xerces</groupId>
31+
<artifactId>xercesImpl</artifactId>
32+
<version>2.12.2</version>
33+
</dependency>
34+
35+
<dependency>
36+
<groupId>org.junit.jupiter</groupId>
37+
<artifactId>junit-jupiter-engine</artifactId>
38+
<version>5.8.1</version>
39+
<scope>test</scope>
40+
</dependency>
41+
</dependencies>
42+
2843
<build>
2944
<plugins>
3045
<plugin>
31-
<groupId>org.apache.maven.plugins</groupId>
3246
<artifactId>maven-compiler-plugin</artifactId>
3347
<version>3.10.1</version>
3448
</plugin>
3549
<plugin>
36-
<groupId>org.apache.maven.plugins</groupId>
3750
<artifactId>maven-surefire-plugin</artifactId>
3851
<version>2.22.2</version>
3952
</plugin>
4053
<plugin>
41-
<groupId>org.apache.maven.plugins</groupId>
4254
<artifactId>maven-jar-plugin</artifactId>
43-
<version>3.2.2</version>
55+
<version>3.3.0</version>
4456
<configuration>
4557
<archive>
4658
<manifest>
@@ -161,21 +173,6 @@
161173
</contributor>
162174
</contributors>
163175

164-
<dependencies>
165-
<dependency>
166-
<groupId>xerces</groupId>
167-
<artifactId>xercesImpl</artifactId>
168-
<version>2.12.2</version>
169-
</dependency>
170-
171-
<dependency>
172-
<groupId>org.junit.jupiter</groupId>
173-
<artifactId>junit-jupiter-engine</artifactId>
174-
<version>5.8.1</version>
175-
<scope>test</scope>
176-
</dependency>
177-
</dependencies>
178-
179176
<distributionManagement>
180177
<snapshotRepository>
181178
<id>sonatype-nexus-snapshots</id>

0 commit comments

Comments
 (0)