File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ dependencies {
14
14
// jOOQ code generation
15
15
implementation ' org.jooq:jooq-codegen:3.13.4'
16
16
implementation " org.testcontainers:postgresql:1.15.3"
17
+ // These are required because gradle might be using lower version of Jna from other
18
+ // library transitive dependency. Can be removed if we can figure out which library is the cause.
19
+ // Refer: https://github.com/testcontainers/testcontainers-java/issues/3834#issuecomment-825409079
20
+ implementation ' net.java.dev.jna:jna:5.8.0'
21
+ implementation ' net.java.dev.jna:jna-platform:5.8.0'
22
+
17
23
// The jOOQ code generator only has access to classes added to the jooqGenerator configuration
18
24
jooqGenerator project(' :airbyte-db:lib' )
19
25
}
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ dependencies {
12
12
implementation project(' :airbyte-json-validation' )
13
13
implementation " org.flywaydb:flyway-core:7.14.0"
14
14
implementation " org.testcontainers:postgresql:1.15.3"
15
+ // These are required because gradle might be using lower version of Jna from other
16
+ // library transitive dependency. Can be removed if we can figure out which library is the cause.
17
+ // Refer: https://github.com/testcontainers/testcontainers-java/issues/3834#issuecomment-825409079
18
+ implementation ' net.java.dev.jna:jna:5.8.0'
19
+ implementation ' net.java.dev.jna:jna-platform:5.8.0'
20
+
15
21
16
22
testImplementation project(' :airbyte-test-utils' )
17
23
testImplementation ' org.apache.commons:commons-lang3:3.11'
Original file line number Diff line number Diff line change @@ -230,10 +230,10 @@ subprojects {
230
230
implementation ' software.amazon.awssdk:s3:2.16.84'
231
231
232
232
233
- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.7.1 '
234
- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.7.1 '
235
- testImplementation ' org.junit.jupiter:junit-jupiter-params:5.7.1 '
236
- testImplementation ' org.mockito:mockito-junit-jupiter:3.9.0 '
233
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.7.2 '
234
+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.7.2 '
235
+ testImplementation ' org.junit.jupiter:junit-jupiter-params:5.7.2 '
236
+ testImplementation ' org.mockito:mockito-junit-jupiter:3.12.4 '
237
237
testImplementation ' org.assertj:assertj-core:3.21.0'
238
238
}
239
239
You can’t perform that action at this time.
0 commit comments