File tree 3 files changed +6
-4
lines changed
src/test/groovy/com/github/eirnym/js2p
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ gradlePlugin {
32
32
}
33
33
}
34
34
dependencies {
35
+ implementation ' org.codehaus.groovy:groovy-all:3.0.7'
35
36
implementation ' org.jsonschema2pojo:jsonschema2pojo-core:1.0.2'
36
37
37
38
testImplementation platform(' org.junit:junit-bom:5.7.1' )
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ ext {
13
13
}
14
14
15
15
dependencies {
16
- compile ' javax.validation:validation-api:1.1.0.CR2'
17
- compile ' com.fasterxml.jackson.core:jackson-databind:2.9.7'
16
+ implementation ' javax.validation:validation-api:1.1.0.CR2'
17
+ implementation ' com.fasterxml.jackson.core:jackson-databind:2.9.7'
18
18
19
19
// see src/main/resources/json/external_dependencies.json
20
- compile ' joda-time:joda-time:2.2'
20
+ implementation ' joda-time:joda-time:2.2'
21
21
}
22
22
23
23
jsonSchema2Pojo {
Original file line number Diff line number Diff line change @@ -103,7 +103,8 @@ class JavaTaskFunctionalTest {
103
103
| mavenCentral()
104
104
|}
105
105
|dependencies {
106
- | compile 'com.fasterxml.jackson.core:jackson-annotations:2.11.2'
106
+ | implementation 'org.codehaus.groovy:groovy:3.0.7'
107
+ | implementation 'com.fasterxml.jackson.core:jackson-annotations:2.11.2'
107
108
|}
108
109
|""" . stripMargin(). bytes)
109
110
Files . write(testProjectDir. resolve(' settings.gradle' ), ' ' . bytes)
You can’t perform that action at this time.
0 commit comments