Skip to content

Commit de45e34

Browse files
committed
prepare version 1.12.0
1 parent 19a6db1 commit de45e34

File tree

2 files changed

+22
-15
lines changed

2 files changed

+22
-15
lines changed

README.md

+14-7
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ We will try to stay in sync with CSSParser regarding the features in the future.
1515
### Project News
1616
[HtmlUnit@Twitter][3]
1717

18-
### Latest release Version 1.11.0 / December 11, 2021
18+
### Latest release Version 1.12.0 / April 24, 2022
1919

2020
For maven, you would add:
2121

2222
<dependency>
2323
<groupId>net.sourceforge.htmlunit</groupId>
2424
<artifactId>htmlunit-cssparser</artifactId>
25-
<version>1.11.0</version>
25+
<version>1.12.0</version>
2626
</dependency>
2727

2828
### Latest CI build
@@ -36,15 +36,22 @@ If you use maven please add:
3636
<dependency>
3737
<groupId>net.sourceforge.htmlunit</groupId>
3838
<artifactId>htmlunit-cssparser</artifactId>
39-
<version>1.12.0-SNAPSHOT</version>
39+
<version>1.13.0-SNAPSHOT</version>
4040
</dependency>
4141

4242
You have to add the sonatype snapshot repository to your pom distributionManagement section also:
4343

44-
<snapshotRepository>
45-
<id>sonatype-nexus-snapshots</id>
46-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
47-
</snapshotRepository>
44+
<repository>
45+
<id>OSS Sonatype snapshots</id>
46+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
47+
<snapshots>
48+
<enabled>true</enabled>
49+
<updatePolicy>always</updatePolicy>
50+
</snapshots>
51+
<releases>
52+
<enabled>false</enabled>
53+
</releases>
54+
</repository>
4855

4956

5057
## Start HtmlUnit - CSSParser Development

pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>net.sourceforge.htmlunit</groupId>
66
<artifactId>htmlunit-cssparser</artifactId>
7-
<version>1.12.0-SNAPSHOT</version>
7+
<version>1.12.0</version>
88
<name>HtmlUnit CSS Parser</name>
99
<packaging>jar</packaging>
1010
<description>CSS parser for HtmlUnit.</description>
@@ -45,7 +45,7 @@
4545
<plugin>
4646
<groupId>org.owasp</groupId>
4747
<artifactId>dependency-check-maven</artifactId>
48-
<version>7.0.0</version>
48+
<version>7.1.0</version>
4949
<configuration>
5050
<failBuildOnCVSS>0</failBuildOnCVSS>
5151
</configuration>
@@ -65,7 +65,7 @@
6565
<plugin>
6666
<groupId>org.apache.maven.plugins</groupId>
6767
<artifactId>maven-compiler-plugin</artifactId>
68-
<version>3.8.1</version>
68+
<version>3.10.1</version>
6969
</plugin>
7070
<plugin>
7171
<!-- generate parsers and lexers before compiling -->
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>net.java.dev.javacc</groupId>
8686
<artifactId>javacc</artifactId>
87-
<version>7.0.10</version>
87+
<version>7.0.11</version>
8888
</dependency>
8989
</dependencies>
9090
</plugin>
@@ -155,14 +155,14 @@
155155
<dependency>
156156
<groupId>com.puppycrawl.tools</groupId>
157157
<artifactId>checkstyle</artifactId>
158-
<version>9.2</version>
158+
<version>9.3</version>
159159
</dependency>
160160
</dependencies>
161161
</plugin>
162162
<plugin>
163163
<groupId>org.apache.maven.plugins</groupId>
164164
<artifactId>maven-jar-plugin</artifactId>
165-
<version>3.2.0</version>
165+
<version>3.2.2</version>
166166
<configuration>
167167
<archive>
168168
<manifest>
@@ -192,7 +192,7 @@
192192
<plugin>
193193
<groupId>org.apache.maven.plugins</groupId>
194194
<artifactId>maven-javadoc-plugin</artifactId>
195-
<version>3.3.1</version>
195+
<version>3.3.2</version>
196196
<configuration>
197197
<additionalparam>--allow-script-in-comments</additionalparam>
198198
<excludePackageNames>com.gargoylesoftware.css.parser.javacc</excludePackageNames>
@@ -208,7 +208,7 @@
208208
<plugin>
209209
<groupId>org.apache.maven.plugins</groupId>
210210
<artifactId>maven-gpg-plugin</artifactId>
211-
<version>1.6</version>
211+
<version>3.0.1</version>
212212
<executions>
213213
<execution>
214214
<phase>verify</phase>

0 commit comments

Comments
 (0)