Skip to content

Commit

Permalink
Add proper test scope to Vibur and Tomcat-JDBC dependencies used fo…
Browse files Browse the repository at this point in the history
…r testing (#382)

* Add proper `test` scope to Vibur and Tomcat-JDBC dependencies used for testing

* Update changelog

* Update CHANGELOG.md
  • Loading branch information
rnorth authored and bsideup committed Jun 28, 2017
1 parent 302fa39 commit b98af3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
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>

0 comments on commit b98af3f

Please sign in to comment.