Skip to content

Commit

Permalink
v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pwinckles committed Oct 9, 2022
1 parent 42775fb commit 680c1c9
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following to your project's POM to pull in the library:
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-core</artifactId>
<version>1.4.6</version>
<version>1.5.0</version>
</dependency>
```

Expand All @@ -30,7 +30,7 @@ If you want S3 support, you must additionally add the following dependency:
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-aws</artifactId>
<version>1.4.6</version>
<version>1.5.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions ocfl-java-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-api</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>

<name>OCFL Java API</name>
<description>Java API for interacting with objects stored in OCFL.</description>
Expand Down
8 changes: 4 additions & 4 deletions ocfl-java-aws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-aws</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>

<name>OCFL Java AWS</name>
<description>Java OCFL implementation that writes to S3.</description>
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-core</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>

<!-- AWS -->
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-test</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions ocfl-java-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-core</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>

<name>OCFL Java Core</name>
<description>Core Java OCFL implementation code.</description>
Expand All @@ -51,7 +51,7 @@
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-api</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>

<!-- JSON -->
Expand Down Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-test</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
10 changes: 5 additions & 5 deletions ocfl-java-itest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-itest</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>

<name>OCFL Java Integration Tests</name>
<description>Integration tests for the OCFL Java library.</description>
Expand All @@ -57,19 +57,19 @@
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-core</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-aws</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>

<!-- Test -->
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-test</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions ocfl-java-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-test</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>

<name>OCFL Java Test Helpers</name>
<description>Common utilities used for constructing tests</description>
Expand All @@ -48,7 +48,7 @@
<dependency>
<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-api</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>edu.wisc.library.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>1.4.7-SNAPSHOT</version>
<version>1.5.0</version>
<packaging>pom</packaging>

<name>OCFL Java Parent POM</name>
Expand Down

0 comments on commit 680c1c9

Please sign in to comment.