Skip to content

Commit

Permalink
Updated docker-java to 3.1.0-rc-3, enforced `org.jetbrains:annotation…
Browse files Browse the repository at this point in the history
…s:15.0` (#652) (#672)
  • Loading branch information
bsideup authored Apr 30, 2018
1 parent 860193a commit 9eef9b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.

### Changed
- Database container images are now pinned to a specific version rather than using `latest`. The tags selected are the most recent as of the time of this change. If a JDBC URL is used with no tag specified, a WARN level log message is output, pending a future change to make tags mandatory in the JDBC URL. ([\#671](https://github.com/testcontainers/testcontainers-java/issues/671))
- Updated docker-java to 3.1.0-rc-3, enforced `org.jetbrains:annotations:15.0`. ([\#672](https://github.com/testcontainers/testcontainers-java/issues/672))

## [1.7.1] - 2018-04-20

Expand Down
7 changes: 5 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,13 @@ dependencies {
compile 'org.apache.commons:commons-compress:1.15'
// Added for JDK9 compatibility since it's missing this package
compile 'javax.xml.bind:jaxb-api:2.3.0'
compile 'org.rnorth.duct-tape:duct-tape:1.0.7'
compile ('org.rnorth.duct-tape:duct-tape:1.0.7') {
exclude(group: 'org.jetbrains', module: 'annotations')
}

compile 'org.rnorth.visible-assertions:visible-assertions:2.1.0'

shaded ('com.github.docker-java:docker-java:3.1.0-rc-2') {
shaded ('com.github.docker-java:docker-java:3.1.0-rc-3') {
exclude(group: 'org.glassfish.jersey.core')
exclude(group: 'org.glassfish.jersey.connectors')
exclude(group: 'log4j')
Expand Down

0 comments on commit 9eef9b3

Please sign in to comment.