Skip to content

Commit

Permalink
start working on 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Oct 31, 2023
1 parent f2a2ccb commit bc9f214
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
28 changes: 22 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,29 @@ We will try to stay in sync with CSSParser regarding the features in the future.

### Latest release Version 3.7.0 / October 30, 2023

For maven, you would add:
## Get it!

### Maven

Add to your `pom.xml`:

```xml
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-cssparser</artifactId>
<version>3.7.0</version>
</dependency>
```

### Gradle

Add to your `build.gradle`:

```groovy
implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '3.7.0'
```


<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-cssparser</artifactId>
<version>3.7.0</version>
</dependency>

### Latst CI build
The latest builds are available from our
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-cssparser</artifactId>
<version>3.7.0</version>
<version>3.8.0-SNAPSHOT</version>
<name>HtmlUnit CSS Parser</name>
<organization>
<name>HtmlUnit</name>
Expand Down Expand Up @@ -46,13 +46,13 @@
</requireJavaVersion>
</rules>
</configuration>
</execution>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependencycheck.version}</version>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependencycheck.version}</version>
<configuration>
<failBuildOnCVSS>0</failBuildOnCVSS>
</configuration>
Expand Down

0 comments on commit bc9f214

Please sign in to comment.