Skip to content

Commit

Permalink
set version 2.0.0 for release (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Dec 3, 2022
1 parent 89eecdb commit 39e4f28
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
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

0 comments on commit 39e4f28

Please sign in to comment.