Skip to content

Commit 7297dec

Browse files
committed
prepare 2.65.0
1 parent ef76da5 commit 7297dec

File tree

4 files changed

+17
-80
lines changed

4 files changed

+17
-80
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HtmlUnit
22

3-
Version 2.64.0 / August 18, 2022
3+
Version 2.65.0 / October 03, 2022
44

55
:heart: [Sponsor](https://github.com/sponsors/rbri)
66

@@ -37,7 +37,7 @@ Add to your `pom.xml`:
3737
<dependency>
3838
<groupId>net.sourceforge.htmlunit</groupId>
3939
<artifactId>htmlunit</artifactId>
40-
<version>2.64.0</version>
40+
<version>2.65.0</version>
4141
</dependency>
4242
```
4343

@@ -46,7 +46,7 @@ Add to your `pom.xml`:
4646
Add to your `build.gradle`:
4747

4848
```groovy
49-
implementation group: 'net.sourceforge.htmlunit', name: 'htmlunit', version: '2.64.0'
49+
implementation group: 'net.sourceforge.htmlunit', name: 'htmlunit', version: '2.65.0'
5050
```
5151

5252
## Overview
@@ -114,7 +114,7 @@ Add the snapshot repository and dependency to your `pom.xml`:
114114
<dependency>
115115
<groupId>net.sourceforge.htmlunit</groupId>
116116
<artifactId>htmlunit</artifactId>
117-
<version>2.65.0-SNAPSHOT</version>
117+
<version>2.66.0-SNAPSHOT</version>
118118
</dependency>
119119
<!-- ... -->
120120
</dependencies>
@@ -133,7 +133,7 @@ repositories {
133133
}
134134
// ...
135135
dependencies {
136-
implementation group: 'net.sourceforge.htmlunit', name: 'htmlunit', version: '2.64.0-SNAPSHOT'
136+
implementation group: 'net.sourceforge.htmlunit', name: 'htmlunit', version: '2.66.0-SNAPSHOT'
137137
// ...
138138
}
139139
```
@@ -146,7 +146,7 @@ dependencies {
146146
This project is licensed under the Apache 2.0 License
147147

148148

149-
[1]: https://sourceforge.net/projects/htmlunit/files/htmlunit/2.64.0/ "HtmlUnit on sourceforge"
149+
[1]: https://sourceforge.net/projects/htmlunit/files/htmlunit/2.65.0/ "HtmlUnit on sourceforge"
150150
[2]: https://jenkins.wetator.org/view/HtmlUnit/ "HtmlUnit CI"
151151
[3]: https://twitter.com/HtmlUnit "https://twitter.com/HtmlUnit"
152152
[4]: https://htmlunit.sourceforge.io/ "https://htmlunit.sourceforge.io/"

pom.xml

Lines changed: 4 additions & 70 deletions
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>htmlunit</artifactId>
8-
<version>2.65.0-SNAPSHOT</version>
8+
<version>2.65.0</version>
99
<name>HtmlUnit</name>
1010
<organization>
1111
<name>Gargoyle Software Inc.</name>
@@ -25,16 +25,17 @@
2525
<maven.compiler.source>8</maven.compiler.source>
2626
<maven.compiler.target>8</maven.compiler.target>
2727

28-
<htmlunitdriver.version>3.65.0-SNAPSHOT</htmlunitdriver.version>
2928
<htmlunitcssparser.version>1.12.0</htmlunitcssparser.version>
3029
<htmlunitneko.version>2.65.0</htmlunitneko.version>
3130
<htmlunitcorejs.version>2.65.0</htmlunitcorejs.version>
3231
<htmlunitxpath.version>2.65.0-SNAPSHOT</htmlunitxpath.version>
3332

33+
<htmlunitdriver.version>4.5.0</htmlunitdriver.version>
34+
<selenium.version>4.5.0</selenium.version>
35+
3436
<httpcomponents.version>4.5.13</httpcomponents.version>
3537
<jetty.version>9.4.49.v20220914</jetty.version>
3638
<log4j.version>2.19.0</log4j.version>
37-
<selenium.version>4.5.0</selenium.version>
3839

3940
<!-- As a property, as it is included in Checkstyle build -->
4041
<checkstyle.version>9.3</checkstyle.version>
@@ -88,28 +89,6 @@
8889
<excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
8990
</configuration>
9091
</plugin>
91-
<plugin>
92-
<groupId>org.apache.maven.plugins</groupId>
93-
<artifactId>maven-pmd-plugin</artifactId>
94-
<version>3.19.0</version>
95-
<dependencies>
96-
<dependency>
97-
<groupId>net.sourceforge.pmd</groupId>
98-
<artifactId>pmd-core</artifactId>
99-
<version>${pmd.version}</version>
100-
</dependency>
101-
<dependency>
102-
<groupId>net.sourceforge.pmd</groupId>
103-
<artifactId>pmd-java</artifactId>
104-
<version>${pmd.version}</version>
105-
</dependency>
106-
</dependencies>
107-
<configuration>
108-
<rulesets>
109-
<ruleset>${basedir}/pmd-ruleset.xml</ruleset>
110-
</rulesets>
111-
</configuration>
112-
</plugin>
11392
<plugin>
11493
<groupId>org.apache.maven.plugins</groupId>
11594
<artifactId>maven-jar-plugin</artifactId>
@@ -182,7 +161,6 @@
182161
<quiet>true</quiet>
183162
<!-- see https://stackoverflow.com/questions/69320220/maven-javadoc-listed-classes-twice -->
184163
<sourcepath>${basedir}/src/main/java</sourcepath>
185-
<additionalparam>--allow-script-in-comments</additionalparam>
186164
<links>
187165
<link>https://docs.oracle.com/javase/8/docs/api/</link>
188166
<link>https://commons.apache.org/logging/apidocs/</link>
@@ -250,49 +228,6 @@
250228
</execution>
251229
</executions>
252230
</plugin>
253-
<plugin>
254-
<groupId>org.apache.maven.plugins</groupId>
255-
<artifactId>maven-eclipse-plugin</artifactId>
256-
<version>2.10</version>
257-
<configuration>
258-
<downloadSources>true</downloadSources>
259-
<downloadJavadocs>true</downloadJavadocs>
260-
<additionalBuildcommands>
261-
<buildcommand>net.sf.eclipsecs.core.CheckstyleBuilder</buildcommand>
262-
</additionalBuildcommands>
263-
<additionalProjectnatures>
264-
<projectnature>net.sf.eclipsecs.core.CheckstyleNature</projectnature>
265-
</additionalProjectnatures>
266-
<useProjectReferences>false</useProjectReferences>
267-
<additionalConfig>
268-
<file>
269-
<name>.checkstyle</name>
270-
<content>
271-
<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
272-
<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
273-
<local-check-config name="HtmlUnit" location="checkstyle.xml" type="project" description="HtmlUnit">
274-
<property name="checkstyle.suppressions.file" value="$${project_loc}/checkstyle_suppressions.xml"/>
275-
<additional-data name="protect-config-file" value="false"/>
276-
</local-check-config>
277-
<fileset name="all" enabled="true" check-config-name="HtmlUnit" local="true">
278-
<file-match-pattern match-pattern="^src/.*\.java$" include-pattern="true"/>
279-
<file-match-pattern match-pattern="^src/.*general/huge/.*\.java$" include-pattern="false"/>
280-
</fileset>
281-
</fileset-config>
282-
]]>
283-
</content>
284-
</file>
285-
</additionalConfig>
286-
<additionalConfig>
287-
<file>
288-
<name>.settings/org.eclipse.core.resources.prefs</name>
289-
<content>
290-
<![CDATA[eclipse.preferences.version=1${line.separator}encoding/<project>=${project.build.sourceEncoding}${line.separator}]]>
291-
</content>
292-
</file>
293-
</additionalConfig>
294-
</configuration>
295-
</plugin>
296231
<plugin>
297232
<groupId>org.apache.maven.plugins</groupId>
298233
<artifactId>maven-scm-plugin</artifactId>
@@ -695,7 +630,6 @@
695630
<quiet>true</quiet>
696631
<!-- see https://stackoverflow.com/questions/69320220/maven-javadoc-listed-classes-twice -->
697632
<sourcepath>${basedir}/src/main/java</sourcepath>
698-
<additionalparam>--allow-script-in-comments</additionalparam>
699633
<links>
700634
<link>https://docs.oracle.com/javase/8/docs/api/</link>
701635
<link>https://commons.apache.org/logging/apidocs/</link>

src/changes/changes.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
</properties>
88

99
<body>
10-
<release version="2.65.0" date="xxxx, 2022" description="Chrome/Edge 105, Firefox 104">
10+
<release version="2.65.0" date="October 03, 2022" description="Chrome/Edge 105, Firefox 105">
11+
<action type="update" dev="rbri">
12+
FF_ESR updatade from version 91 to 102.
13+
</action>
1114
<action type="remove" dev="rbri">
1215
com.gargoylesoftware.htmlunit.util.TextUtils removed.
1316
</action>

src/site/xdoc/index.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
<section name="Where to find...">
5757
<p>
5858
<dl>
59-
<dt>Latest release <date>August 18, 2022</date></dt>
59+
<dt>Latest release <date>October 03, 2022</date></dt>
6060
<dd>
61-
<p><a href="https://sourceforge.net/projects/htmlunit/files/htmlunit/2.64.0/">version 2.64.0</a></p>
61+
<p><a href="https://sourceforge.net/projects/htmlunit/files/htmlunit/2.65.0/">version 2.65.0</a></p>
6262
</dd>
6363

6464
<dt>Source code</dt>
@@ -179,7 +179,7 @@
179179
<dependency>
180180
<groupId>net.sourceforge.htmlunit</groupId>
181181
<artifactId>htmlunit</artifactId>
182-
<version>2.64.0</version>
182+
<version>2.65.0</version>
183183
</dependency>]]></source>
184184
</p>
185185

0 commit comments

Comments
 (0)