Skip to content

Commit cdf8224

Browse files
committed
4.14.0
1 parent 0318c5f commit cdf8224

File tree

2 files changed

+23
-36
lines changed

2 files changed

+23
-36
lines changed

README.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ We will try to stay in sync with CSSParser regarding the features in the future.
1818

1919
[HtmlUnit@mastodon](https://fosstodon.org/@HtmlUnit) | [HtmlUnit@bsky](https://bsky.app/profile/htmlunit.bsky.social) | [HtmlUnit@Twitter](https://twitter.com/HtmlUnit)
2020

21-
### Latest release Version 4.13.0 / June 03, 2025
21+
### Latest release Version 4.14.0 / July 30, 2025
2222

2323
## Get it!
2424

@@ -30,7 +30,7 @@ Add to your `pom.xml`:
3030
<dependency>
3131
<groupId>org.htmlunit</groupId>
3232
<artifactId>htmlunit-cssparser</artifactId>
33-
<version>4.13.0</version>
33+
<version>4.14.0</version>
3434
</dependency>
3535
```
3636

@@ -39,7 +39,7 @@ Add to your `pom.xml`:
3939
Add to your `build.gradle`:
4040

4141
```groovy
42-
implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '4.13.0'
42+
implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '4.14.0'
4343
```
4444

4545

@@ -55,22 +55,24 @@ If you use maven please add:
5555
<dependency>
5656
<groupId>org.htmlunit</groupId>
5757
<artifactId>htmlunit-cssparser</artifactId>
58-
<version>4.14.0-SNAPSHOT</version>
58+
<version>4.15.0-SNAPSHOT</version>
5959
</dependency>
6060

61-
You have to add the sonatype snapshot repository to your pom `repositories` section also:
61+
You have to add the sonatype-central snapshot repository to your pom `repositories` section also:
6262

63-
<repository>
64-
<id>OSS Sonatype snapshots</id>
65-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
66-
<snapshots>
67-
<enabled>true</enabled>
68-
<updatePolicy>always</updatePolicy>
69-
</snapshots>
70-
<releases>
71-
<enabled>false</enabled>
72-
</releases>
73-
</repository>
63+
<repositories>
64+
<repository>
65+
<name>Central Portal Snapshots</name>
66+
<id>central-portal-snapshots</id>
67+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
68+
<releases>
69+
<enabled>false</enabled>
70+
</releases>
71+
<snapshots>
72+
<enabled>true</enabled>
73+
</snapshots>
74+
</repository>
75+
</repositories>
7476

7577

7678
## Start HtmlUnit - CSSParser Development
@@ -126,9 +128,8 @@ This part is intended for committer who are packaging a release.
126128
mvn -up clean deploy
127129
```
128130

129-
* Go to [Sonatype staging repositories](https://s01.oss.sonatype.org/index.html#stagingRepositories) and process the deploy
130-
- select the repository and close it - wait until the close is processed
131-
- release the package and wait until it is processed
131+
* Go to [Maven Central Portal](https://central.sonatype.com/) and process the deploy
132+
- publish the package and wait until it is processed
132133

133134
* Create the version on Github
134135
* login to Github and open project https://github.com/HtmlUnit/htmlunit-cssparser

pom.xml

Lines changed: 3 additions & 17 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-cssparser</artifactId>
7-
<version>4.14.0-SNAPSHOT</version>
7+
<version>4.14.0</version>
88
<name>HtmlUnit CSS Parser</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -33,6 +33,7 @@
3333
<checkstyle-plugin.version>3.6.0</checkstyle-plugin.version>
3434
<gpg-plugin.version>3.2.8</gpg-plugin.version>
3535
<enforcer-plugin.version>3.6.1</enforcer-plugin.version>
36+
<jar-plugin.version>3.4.2</jar-plugin.version>
3637
</properties>
3738

3839
<build>
@@ -188,7 +189,7 @@
188189
<plugin>
189190
<groupId>org.apache.maven.plugins</groupId>
190191
<artifactId>maven-jar-plugin</artifactId>
191-
<version>3.4.2</version>
192+
<version>${jar-plugin.version}</version>
192193
<configuration>
193194
<archive>
194195
<manifest>
@@ -353,19 +354,4 @@
353354
</dependency>
354355
</dependencies>
355356

356-
<!-- for snapshots of our dependencies -->
357-
<repositories>
358-
<repository>
359-
<name>Central Portal Snapshots</name>
360-
<id>central-portal-snapshots</id>
361-
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
362-
<releases>
363-
<enabled>false</enabled>
364-
</releases>
365-
<snapshots>
366-
<enabled>true</enabled>
367-
</snapshots>
368-
</repository>
369-
</repositories>
370-
371357
</project>

0 commit comments

Comments
 (0)