File tree 4 files changed +5
-15
lines changed
data-prepper-pipeline-parser
data-prepper-plugin-schema
data-prepper-plugin-schema-cli
data-prepper-plugins/aws-lambda
4 files changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies {
13
13
implementation project(' :data-prepper-api' )
14
14
implementation project(' :data-prepper-plugins:blocking-buffer' )
15
15
implementation project(' :data-prepper-plugins:rds-source' )
16
- implementation ' com.fasterxml.jackson.core:jackson-databind:2.12.3 '
16
+ implementation ' com.fasterxml.jackson.core:jackson-databind'
17
17
implementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
18
18
implementation ' org.apache.commons:commons-collections4:4.4'
19
19
implementation ' org.apache.commons:commons-text:1.13.0'
@@ -29,9 +29,6 @@ dependencies {
29
29
}
30
30
implementation ' software.amazon.cloudwatchlogs:aws-embedded-metrics:2.0.0-beta-1'
31
31
implementation ' software.amazon.awssdk:arns'
32
- testImplementation testLibs. bundles. junit
33
- testImplementation testLibs. bundles. mockito
34
- testImplementation testLibs. hamcrest
35
32
testImplementation ' org.assertj:assertj-core:3.20.2'
36
33
compileOnly ' org.projectlombok:lombok:1.18.20'
37
34
annotationProcessor ' org.projectlombok:lombok:1.18.20'
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies {
13
13
implementation project(' :data-prepper-plugin-schema' )
14
14
implementation ' com.fasterxml.jackson.core:jackson-databind'
15
15
implementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
16
- implementation ' org .reflections:reflections:0.10.2 '
16
+ implementation libs . reflections. core
17
17
implementation ' com.github.victools:jsonschema-maven-plugin:4.35.0'
18
18
implementation ' com.github.victools:jsonschema-generator:4.35.0'
19
19
implementation ' com.github.victools:jsonschema-module-jackson:4.35.0'
@@ -26,8 +26,6 @@ dependencies {
26
26
implementation(libs. spring. context) {
27
27
exclude group : ' commons-logging' , module : ' commons-logging'
28
28
}
29
- testImplementation(platform(" org.junit:junit-bom:5.9.1" ))
30
- testImplementation(" org.junit.jupiter:junit-jupiter" )
31
29
}
32
30
33
31
jacocoTestCoverageVerification {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ dependencies {
6
6
implementation project(' :data-prepper-api' )
7
7
implementation project(' :data-prepper-plugin-framework' )
8
8
implementation ' com.fasterxml.jackson.core:jackson-databind'
9
- implementation ' org .reflections:reflections:0.10.2 '
9
+ implementation libs . reflections. core
10
10
implementation ' com.github.victools:jsonschema-maven-plugin:4.35.0'
11
11
implementation ' com.github.victools:jsonschema-generator:4.35.0'
12
12
implementation ' com.github.victools:jsonschema-module-jackson:4.35.0'
@@ -18,8 +18,6 @@ dependencies {
18
18
implementation(libs. spring. context) {
19
19
exclude group : ' commons-logging' , module : ' commons-logging'
20
20
}
21
- testImplementation(platform(" org.junit:junit-bom:5.9.1" ))
22
- testImplementation(" org.junit.jupiter:junit-jupiter" )
23
21
testImplementation project(' :data-prepper-plugins' )
24
22
}
25
23
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ dependencies {
12
12
implementation ' io.micrometer:micrometer-core'
13
13
implementation ' com.fasterxml.jackson.core:jackson-core'
14
14
implementation ' com.fasterxml.jackson.core:jackson-databind'
15
- implementation ' software.amazon.awssdk:lambda:2.17.99 '
16
- implementation ' software.amazon.awssdk:sdk-core:2.x.x '
15
+ implementation ' software.amazon.awssdk:lambda'
16
+ implementation ' software.amazon.awssdk:sdk-core'
17
17
implementation ' software.amazon.awssdk:netty-nio-client'
18
18
implementation ' software.amazon.awssdk:sts'
19
19
implementation ' org.hibernate.validator:hibernate-validator:8.0.1.Final'
@@ -29,9 +29,6 @@ dependencies {
29
29
testImplementation ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
30
30
testImplementation project(' :data-prepper-test-common' )
31
31
testImplementation testLibs. slf4j. simple
32
- testImplementation ' org.mockito:mockito-core:4.6.1'
33
- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.2'
34
- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.8.2'
35
32
}
36
33
37
34
test {
You can’t perform that action at this time.
0 commit comments