Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set version 2.0.0 for release #155

Merged
merged 1 commit into from Dec 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 4 additions & 6 deletions README.md
Expand Up @@ -10,7 +10,8 @@ DOM, XOM, dom4j, and JDOM. It is also possible to write
adapters that treat non-XML trees such as compiled Java byte code
or Java beans as XML, thus enabling you to query these trees with XPath too.

The current version is *1.2.0*. This release requires Java 1.4 or later.
The current version is *2.0.0*. This release requires Java 1.5 or later.
If you're still using Java 1.4 or earlier, try Jaxen 1.2.0.
If you're still using Java 1.3 or earlier, try Jaxen 1.1.6.

## Adding Jaxen to your build
Expand All @@ -21,17 +22,14 @@ Jaxen's Maven group ID is `jaxen` and its artifact ID is `jaxen`. To add a depen
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.2.0</version>
<version>2.0.0</version>
</dependency>
```

To add a dependency using Gradle:

```gradle
dependencies {
compile 'jaxen:jaxen:1.2.0'
compile 'jaxen:jaxen:2.0.0'
}
```

Jaxen was one of the earliest adopters of Maven, before a lot of practices had gelled. Consequently there are cycles in its dependency tree. Cleaning this up will be a major focus of Jaxen 2.0.

2 changes: 1 addition & 1 deletion core/pom.xml
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>jaxen</groupId>
<artifactId>jaxen-parent</artifactId>
<version>2.0.0-beta-1</version>
<version>2.0.0</version>
</parent>

<artifactId>jaxen</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/pom.xml
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>jaxen</groupId>
<artifactId>jaxen-parent</artifactId>
<version>2.0.0-beta-1</version>
<version>2.0.0</version>
</parent>

<artifactId>jaxen-integration</artifactId>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>2.0.0-beta-1</version>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -8,7 +8,7 @@
<artifactId>jaxen-parent</artifactId>
<packaging>pom</packaging>
<name>Jaxen</name>
<version>2.0.0-beta-1</version>
<version>2.0.0</version>
<description>Jaxen is a universal XPath 1.0 engine for Java.</description>
<url>http://www.cafeconleche.org/jaxen</url>
<licenses>
Expand Down