Skip to content

Commit 363de19

Browse files
committed
version 3.0.0
1 parent c383f59 commit 363de19

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

Diff for: README.md

+12-12
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.14.0 / January 22, 2023
18+
### Latest release Version 3.0.0 / March 19, 2023
1919

2020
For maven, you would add:
2121

2222
<dependency>
23-
<groupId>net.sourceforge.htmlunit</groupId>
23+
<groupId>org.htmlunit</groupId>
2424
<artifactId>htmlunit-cssparser</artifactId>
25-
<version>1.14.0</version>
25+
<version>3.0.0</version>
2626
</dependency>
2727

2828
### Latst CI build
@@ -34,16 +34,16 @@ The latest builds are available from our
3434
If you use maven please add:
3535

3636
<dependency>
37-
<groupId>net.sourceforge.htmlunit</groupId>
37+
<groupId>org.htmlunit</groupId>
3838
<artifactId>htmlunit-cssparser</artifactId>
39-
<version>1.15.0-SNAPSHOT</version>
39+
<version>3.1.0-SNAPSHOT</version>
4040
</dependency>
4141

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

4444
<repository>
4545
<id>OSS Sonatype snapshots</id>
46-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
46+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
4747
<snapshots>
4848
<enabled>true</enabled>
4949
<updatePolicy>always</updatePolicy>
@@ -100,19 +100,19 @@ This part is intended for committer who are packaging a release.
100100
mvn -up clean deploy
101101
```
102102

103-
* Go to [Sonatype staging repositories](https://oss.sonatype.org/index.html#stagingRepositories) and process the deploy
103+
* Go to [Sonatype staging repositories](https://s01.oss.sonatype.org/index.html#stagingRepositories) and process the deploy
104104
- select the repository and close it - wait until the close is processed
105105
- release the package and wait until it is processed
106106

107107
* Create the version on Github
108108
* login to Github and open project https://github.com/HtmlUnit/htmlunit-cssparser
109109
* click Releases > Draft new release
110-
* fill the tag and title field with the release number (e.g. 1.1.0)
110+
* fill the tag and title field with the release number (e.g. 3.0.0)
111111
* append
112-
* htmlunit-cssparser-1.x.x.jar
113-
* htmlunit-cssparser-1.x.x.jar.asc
114-
* htmlunit-cssparser-1.x.x-javadoc.jar
115-
* htmlunit-cssparser-1.x.x-javadoc.jar.asc
112+
* htmlunit-cssparser-3.x.x.jar
113+
* htmlunit-cssparser-3.x.x.jar.asc
114+
* htmlunit-cssparser-3.x.x-javadoc.jar
115+
* htmlunit-cssparser-3.x.x-javadoc.jar.asc
116116
* and publish the release
117117

118118
* Update the version number in pom.xml to start next snapshot development

Diff for: pom.xml

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>net.sourceforge.htmlunit</groupId>
5+
<groupId>org.htmlunit</groupId>
66
<artifactId>htmlunit-cssparser</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0</version>
88
<name>HtmlUnit CSS Parser</name>
9+
<organization>
10+
<name>HtmlUnit</name>
11+
<url>https://www.htmlunit.org</url>
12+
</organization>
913
<packaging>jar</packaging>
1014
<description>CSS parser for HtmlUnit.</description>
1115
<url>https://github.com/HtmlUnit/htmlunit-cssparser</url>
@@ -359,11 +363,11 @@
359363
<distributionManagement>
360364
<snapshotRepository>
361365
<id>sonatype-nexus-snapshots</id>
362-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
366+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
363367
</snapshotRepository>
364368
<repository>
365369
<id>sonatype-nexus-staging</id>
366-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
370+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
367371
</repository>
368372
</distributionManagement>
369373
<repositories>
@@ -376,7 +380,7 @@
376380
<enabled>false</enabled>
377381
</releases>
378382
<id>OSS Sonatype snapshots</id>
379-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
383+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
380384
</repository>
381385
</repositories>
382386
</project>

0 commit comments

Comments
 (0)