Skip to content

Commit

Permalink
commons-io version is incompatible with Liquibase #32
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 26, 2024
1 parent 99a6ba1 commit 33f610e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.0-RC1

* #31 commons-lang3 version is incompatible with Liquibase
* #32 commons-io version is incompatible with Liquibase
* #34 Tapestry 5.5 and 5.8 modules bring JUnit 5 to compile scope

## 3.0-M6
Expand Down
8 changes: 8 additions & 0 deletions bootique-tapestry58/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -99,6 +103,10 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
8 changes: 8 additions & 0 deletions bootique-tapestry59-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -105,6 +109,10 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<!-- Dependency versions compatible with the rest of Bootique, and manually managed for security reasons -->
<!-- Liquibase uses these -->
<commons.lang3.version>3.17.0</commons.lang3.version>
<commons.io.version>2.17.0</commons.io.version>
<!-- Security considerations, 5.8 and 5.9 only -->
<commons.codec.version>1.16.1</commons.codec.version>
</properties>
Expand Down Expand Up @@ -105,6 +106,11 @@
<artifactId>commons-codec</artifactId>
<version>${commons.codec.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 33f610e

Please sign in to comment.