Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
### Fixed
- Fixed the case when disk's size is bigger than Integer's max value (#379, #380)
- Fix erroneous version reference used during CI testing of shaded dependencies
- Fix leakage of Vibur and Tomcat JDBC test dependencies in `jdbc-test` and `mysql` modules (#382)

### Changed
- Added support for Docker networks (#372)
Expand Down
2 changes: 2 additions & 0 deletions modules/jdbc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,13 @@
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<version>8.5.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.vibur</groupId>
<artifactId>vibur-dbcp</artifactId>
<version>9.0</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 2 additions & 0 deletions modules/mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,13 @@
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<version>8.5.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.vibur</groupId>
<artifactId>vibur-dbcp</artifactId>
<version>9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>