This is the code repository of the XPath support used by HtmlUnit.
HtmlUnit used Apache Xalan (https://xalan.apache.org/) for a long time. But the development of Xalan was discontinued in 2019. Since HtmlUnit only uses XPath functionality, we decided to create a fork and remove all things that are no longer needed. In addition, we made some code updates for JDK 8 and we added unit tests and the maven-based build.
❤️ Sponsor
HtmlUnit@mastodon | HtmlUnit@Twitter
Add to your pom.xml
:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-xpath</artifactId>
<version>4.6.0</version>
</dependency>
Add to your build.gradle
:
implementation group: 'org.htmlunit', name: 'htmlunit-xpath', version: '4.6.0'
The latest builds are available from our Jenkins CI build server
If you use maven please add:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-xpath</artifactId>
<version>4.7.0-SNAPSHOT</version>
</dependency>
You have to add the sonatype snapshot repository to your pom repositories
section also:
<repository>
<id>OSS Sonatype snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
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.
You simply only need a local maven installation.
Create a local clone of the repository and you are ready to start.
Open a command line window from the root folder of the project and call
mvn compile
mvn test
Pull Requests and and all other Community Contributions are essential for open source software. Every contribution - from bug reports to feature requests, typos to full new features - are greatly appreciated.
This part is intended for committer who are packaging a release.
- Check all your files are checked in
- Execute these mvn commands to be sure all tests are passing and everything is up to data
mvn versions:display-plugin-updates
mvn versions:display-dependency-updates
mvn -U clean test
-
Update the version number in pom.xml and README.md
-
Commit the changes
-
Build and deploy the artifacts
mvn -up clean deploy
-
Go to Sonatype staging repositories and process the deploy
- select the repository and close it - wait until the close is processed
- release the package and wait until it is processed
-
Create the version on Github
- login to Github and open project https://github.com/HtmlUnit/htmlunit-xpath
- click Releases > Draft new release
- fill the tag and title field with the release number (e.g. 4.0.0)
- append
- htmlunit-xpath-4.x.x.jar
- htmlunit-xpath-4.x.x.jar.asc
- htmlunit-xpath-4.x.x.pom
- htmlunit-xpath-4.x.x.pom.asc
- htmlunit-xpath-4.x.x-javadoc.jar
- htmlunit-xpath-4.x.x-javadoc.jar.asc
- htmlunit-xpath-4.x.x-sources.jar
- htmlunit-xpath-4.x.x-sources.jar.asc
- and publish the release
-
Update the version number in pom.xml to start next snapshot development
-
Update the htmlunit pom to use the new release
- RBRi
- all the contributors to Xalan
This project is licensed under the Apache 2.0 License
Many thanks to all of you contributing to HtmlUnit/CSSParser/Rhino in the past.