Skip to content

Commit f96653e

Browse files
committed
prepare version 1.11.0
1 parent e526231 commit f96653e

File tree

2 files changed

+50
-17
lines changed

2 files changed

+50
-17
lines changed

Diff for: README.md

+49-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
HtmlUnit - CSSParser
2-
--------
1+
# HtmlUnit - CSSParser
32

43
This is the code repository of the CSS parser used by HtmlUnit starting with version 1.30.
54

@@ -11,9 +10,44 @@ We will try to stay in sync with CSSParser regarding the features in the future.
1110

1211
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.sourceforge.htmlunit/htmlunit-cssparser/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.sourceforge.htmlunit/htmlunit-cssparser)
1312

13+
:heart: [Sponsor](https://github.com/sponsors/rbri)
1414

15-
Getting Started
16-
--------
15+
### Project News
16+
[HtmlUnit@Twitter][3]
17+
18+
### Latest release Version 1.11.0 / December 11, 2021
19+
20+
For maven, you would add:
21+
22+
<dependency>
23+
<groupId>net.sourceforge.htmlunit</groupId>
24+
<artifactId>htmlunit-cssparser</artifactId>
25+
<version>1.11.0</version>
26+
</dependency>
27+
28+
### Latest CI build
29+
The latest builds are available from our
30+
[Jenkins CI build server][2]
31+
32+
[![Build Status](https://jenkins.wetator.org/buildStatus/icon?job=HtmlUnit+-+CSS+Parser)](https://jenkins.wetator.org/job/HtmlUnit%20-%20CSS%20Parser/)
33+
34+
If you use maven please add:
35+
36+
<dependency>
37+
<groupId>net.sourceforge.htmlunit</groupId>
38+
<artifactId>htmlunit-cssparser</artifactId>
39+
<version>1.12.0-SNAPSHOT</version>
40+
</dependency>
41+
42+
You have to add the sonatype snapshot repository to your pom distributionManagement section also:
43+
44+
<snapshotRepository>
45+
<id>sonatype-nexus-snapshots</id>
46+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
47+
</snapshotRepository>
48+
49+
50+
## Start HtmlUnit - CSSParser Development
1751

1852
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
1953

@@ -38,20 +72,18 @@ mvn compile
3872
mvn test
3973
```
4074

41-
Contributing
42-
--------
75+
## Contributing
4376

44-
45-
TODO
46-
Please read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details on our code of conduct, and the process for submitting pull requests to us.
77+
Pull Requests and and all other Community Contributions are essential for open source software.
78+
Every contribution - from bug reports to feature requests, typos to full new features - are greatly appreciated.
4779

4880
## Deployment and Versioning
4981

5082
This part is intended for committer who are packaging a release.
5183

5284
* Check all your files are checked in
5385
* Execute "mvn clean test" to be sure all tests are passing
54-
* Update the version number in pom.xml
86+
* Update the version number in pom.xml and README.md
5587
* Execute "mvn clean test" to be sure all tests are passing
5688
* Commit the changes
5789

@@ -80,18 +112,19 @@ This part is intended for committer who are packaging a release.
80112
* Update the version number in pom.xml to start next snapshot development
81113
* Update the htmlunit pom to use the new release
82114

83-
Authors
84-
--------
115+
## Authors
85116

86117
* **RBRi**
87118
* all the contributors to CSSParser
88119

89-
License
90-
--------
120+
## License
91121

92122
This project is licensed under the Apache 2.0 License
93123

94-
Acknowledgments
95-
--------
124+
## Acknowledgments
96125

97126
Many thanks to all of you contributing to HtmlUnit/CSSParser/Rhino in the past.
127+
128+
129+
[2]: https://jenkins.wetator.org/job/HtmlUnit%20-%20CSS%20Parser/ "HtmlUnit - CSS Parser CI"
130+
[3]: https://twitter.com/HtmlUnit "https://twitter.com/HtmlUnit"

Diff for: pom.xml

+1-1
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.11.0-SNAPSHOT</version>
7+
<version>1.11.0</version>
88
<name>HtmlUnit CSS Parser</name>
99
<packaging>jar</packaging>
1010
<description>CSS parser for HtmlUnit.</description>

0 commit comments

Comments
 (0)