Skip to content

Commit 83346b0

Browse files
committed
Merge dimafeng-master into master
2 parents 1cbfec6 + c6390cd commit 83346b0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66
- Fixed retrieval of Docker host IP when running inside Docker. ([\#479](https://github.com/testcontainers/testcontainers-java/issues/479))
77
- Compose is now able to pull images from private repositories. ([\#536](https://github.com/testcontainers/testcontainers-java/issues/536))
88
- Fixed overriding MySQL image command. ([\#534](https://github.com/testcontainers/testcontainers-java/issues/534))
9+
- Fixed shading for javax.annotation.CheckForNull ([\#563](https://github.com/testcontainers/testcontainers-java/issues/563) and [testcontainers/testcontainers-scala\#11](https://github.com/testcontainers/testcontainers-scala/issues/11)).
910

1011
### Changed
1112
- Added JDK9 build and tests to Travis-CI. ([\#562](https://github.com/testcontainers/testcontainers-java/pull/562))

core/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@
7676
<version>2.0.1</version>
7777
</dependency>
7878

79+
<dependency>
80+
<groupId>com.google.code.findbugs</groupId>
81+
<artifactId>jsr305</artifactId>
82+
<version>3.0.2</version>
83+
</dependency>
84+
7985
<dependency>
8086
<groupId>org.rnorth</groupId>
8187
<artifactId>tcp-unix-socket-proxy</artifactId>
@@ -230,7 +236,7 @@
230236
<include>org.apache.httpcomponents:*</include>
231237
<include>org.glassfish.*:*</include>
232238
<include>org.aopalliance.*:*</include>
233-
<include>javax.annotation:*</include>
239+
<include>com.google.code.findbugs:jsr305</include>
234240
<include>javax.inject:*</include>
235241
<include>javax.ws.rs:*</include>
236242
<include>com.fasterxml.*:*</include>

0 commit comments

Comments
 (0)