Skip to content

Commit 7fb8d11

Browse files
committed
Fix build
1 parent 1ea51ad commit 7fb8d11

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

core/build.gradle

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,33 @@ tasks.japicmp {
4949

5050
classExcludes = [
5151
"org.testcontainers.utility.RyukResourceReaper",
52+
"org.testcontainers.containers.FailureDetectingExternalResource",
53+
"org.testcontainers.containers.ComposeContainer",
54+
"org.testcontainers.containers.DockerComposeContainer",
55+
"org.testcontainers.containers.GenericContainer"
5256
]
5357

5458
methodExcludes = [
5559
"org.testcontainers.containers.Container#getDockerClient()",
5660
"org.testcontainers.containers.ContainerState#getDockerClient()",
5761
"org.testcontainers.containers.ContainerState#execInContainer(org.testcontainers.containers.ExecConfig)",
58-
"org.testcontainers.containers.ContainerState#execInContainer(java.nio.charset.Charset,org.testcontainers.containers.ExecConfig)"
62+
"org.testcontainers.containers.ContainerState#execInContainer(java.nio.charset.Charset,org.testcontainers.containers.ExecConfig)",
63+
"org.testcontainers.containers.ComposeContainer#apply(org.junit.runners.model.Statement, org.junit.runner.Description)",
64+
"org.testcontainers.containers.ComposeContainer#failed(java.lang.Throwable, org.junit.runner.Description)",
65+
"org.testcontainers.containers.ComposeContainer#finished(org.junit.runner.Description)",
66+
"org.testcontainers.containers.ComposeContainer#starting(org.junit.runner.Description)",
67+
"org.testcontainers.containers.ComposeContainer#succeeded(org.junit.runner.Description)",
68+
"org.testcontainers.containers.DockerComposeContainer#apply(org.junit.runners.model.Statement, org.junit.runner.Description)",
69+
"org.testcontainers.containers.DockerComposeContainer#failed(java.lang.Throwable, org.junit.runner.Description)",
70+
"org.testcontainers.containers.DockerComposeContainer#finished(org.junit.runner.Description)",
71+
"org.testcontainers.containers.DockerComposeContainer#starting(org.junit.runner.Description)",
72+
"org.testcontainers.containers.DockerComposeContainer#succeeded(org.junit.runner.Description)",
73+
"org.testcontainers.containers.GenericContainer#apply(org.junit.runners.model.Statement, org.junit.runner.Description)",
74+
"org.testcontainers.containers.GenericContainer#failed(java.lang.Throwable, org.junit.runner.Description)",
75+
"org.testcontainers.containers.GenericContainer#finished(org.junit.runner.Description)",
76+
"org.testcontainers.containers.GenericContainer#starting(org.junit.runner.Description)",
77+
"org.testcontainers.containers.GenericContainer#succeeded(org.junit.runner.Description)",
78+
'org.testcontainers.containers.Network$NetworkImpl#after()'
5979
]
6080

6181
fieldExcludes = []

0 commit comments

Comments
 (0)