Skip to content
This repository was archived by the owner on Apr 14, 2023. It is now read-only.

Commit 83a39c0

Browse files
committed
fix(#1721): Update build.gradle files to work with gradle 7
1 parent 7bd7f62 commit 83a39c0

File tree

8 files changed

+117
-110
lines changed

8 files changed

+117
-110
lines changed

common/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,30 @@ repositories {
2727
}
2828

2929
dependencies {
30-
compile "org.apache.commons:commons-lang3:${COMMONS_LANG3_VERSION}"
31-
compile "com.fasterxml.jackson.core:jackson-core:${JACKSON_VERSION}"
32-
compile "com.fasterxml.jackson.core:jackson-annotations:${JACKSON_VERSION}"
33-
compile "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
34-
compile group: "com.google.inject", name: "guice", version: "${GUICE_VERSION}"
30+
implementation "org.apache.commons:commons-lang3:${COMMONS_LANG3_VERSION}"
31+
implementation "com.fasterxml.jackson.core:jackson-core:${JACKSON_VERSION}"
32+
implementation "com.fasterxml.jackson.core:jackson-annotations:${JACKSON_VERSION}"
33+
implementation "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
34+
implementation group: "com.google.inject", name: "guice", version: "${GUICE_VERSION}"
3535

3636
constraints {
37-
compile('com.google.guava:guava:30.0-jre') {
37+
implementation('com.google.guava:guava:30.0-jre') {
3838
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
3939
}
40-
compile('com.google.guava:guava:30.0-android') {
40+
implementation('com.google.guava:guava:30.0-android') {
4141
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
4242
}
4343
}
4444

4545
implementation "org.threeten:threeten-extra:${THREE_TEN_VERSION}"
46-
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
47-
testCompile "junit:junit:${JUNIT_4_VERSION}"
48-
testCompile "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
49-
testCompile "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
50-
testCompile "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
51-
testCompile "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
52-
testCompile "org.mockito:mockito-all:${MOCKITO_VERSION}"
53-
testCompile "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
46+
testImplementation "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
47+
testImplementation "junit:junit:${JUNIT_4_VERSION}"
48+
testImplementation "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
49+
testImplementation "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
50+
testImplementation "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
51+
testImplementation "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
52+
testImplementation "org.mockito:mockito-all:${MOCKITO_VERSION}"
53+
testImplementation "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
5454
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_JUPITER_VERSION}")
5555
}
5656

core/build.gradle

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
*/
1616

1717
dependencies {
18-
compile project(":common")
18+
implementation project(":common")
1919

20-
compile "com.google.inject:guice:${GUICE_VERSION}"
21-
compile "dk.brics.automaton:automaton:${AUTOMATON_VERSION}"
22-
compile "org.apache.commons:commons-csv:${COMMONS_CSV_VERSION}"
20+
implementation "com.google.inject:guice:${GUICE_VERSION}"
21+
implementation "dk.brics.automaton:automaton:${AUTOMATON_VERSION}"
22+
implementation "org.apache.commons:commons-csv:${COMMONS_CSV_VERSION}"
2323
implementation "com.github.javafaker:javafaker:${FAKER_VERSION}"
2424
implementation ('org.yaml:snakeyaml') {
2525
version {
@@ -28,24 +28,24 @@ dependencies {
2828
}
2929

3030
constraints {
31-
compile('com.google.guava:guava:30.0-jre') {
31+
implementation('com.google.guava:guava:30.0-jre') {
3232
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
3333
}
34-
compile('com.google.guava:guava:30.0-android') {
34+
implementation('com.google.guava:guava:30.0-android') {
3535
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
3636
}
3737
}
3838

39-
testCompile project(":common").sourceSets.test.output
40-
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
41-
testCompile "junit:junit:${JUNIT_4_VERSION}"
42-
testCompile "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
43-
testCompile "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
44-
testCompile "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
45-
testCompile "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
46-
testCompile "com.shazam:shazamcrest:${SHAZAMCREST_VERSION}"
47-
testCompile "org.mockito:mockito-all:${MOCKITO_VERSION}"
48-
testCompile "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
39+
testImplementation project(":common").sourceSets.test.output
40+
testImplementation "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
41+
testImplementation "junit:junit:${JUNIT_4_VERSION}"
42+
testImplementation "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
43+
testImplementation "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
44+
testImplementation "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
45+
testImplementation "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
46+
testImplementation "com.shazam:shazamcrest:${SHAZAMCREST_VERSION}"
47+
testImplementation "org.mockito:mockito-all:${MOCKITO_VERSION}"
48+
testImplementation "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
4949
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_JUPITER_VERSION}")
5050
}
5151

core/src/test/java/com/scottlogic/datahelix/generator/core/builders/ConstraintChainBuilder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package com.scottlogic.datahelix.generator.core.builders;
1818

19-
import com.scottlogic.datahelix.generator.common.SetUtils;
2019
import com.scottlogic.datahelix.generator.common.profile.Field;
2120
import com.scottlogic.datahelix.generator.common.util.NumberUtils;
2221
import com.scottlogic.datahelix.generator.core.profile.constraints.Constraint;

custom/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile group: 'junit', name: 'junit', version: '4.13.1'
14+
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
1515
}

orchestrator/build.gradle

Lines changed: 35 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
plugins {
1818
id "java"
19-
id "de.gliderpilot.semantic-release" version "1.4.0"
19+
id "de.gliderpilot.semantic-release" version "1.4.2"
2020
id "application"
2121
id "nebula.deb" version "8.0.3"
2222
}
@@ -30,33 +30,37 @@ repositories {
3030
}
3131

3232
dependencies {
33-
compile project(":profile")
34-
compile project(":core")
35-
compile project(":output")
36-
compile project(":common")
37-
compile project(":custom")
38-
39-
compile group: "info.picocli", name: "picocli", version: "${PICOCLI_VERSION}"
40-
compile group: "com.google.code.gson", name: "gson", version: "${GSON_VERSION}"
41-
42-
testCompile project(":common").sourceSets.test.output
43-
testCompile "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
44-
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
45-
testCompile "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
46-
testCompile "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
47-
testCompile "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
48-
testCompile "io.cucumber:cucumber-junit:${CUCUMBER_VERSION}"
49-
testCompile "io.cucumber:cucumber-java:${CUCUMBER_VERSION}"
50-
testCompile "io.cucumber:cucumber-java8:${CUCUMBER_VERSION}"
51-
testCompile "io.cucumber:gherkin:${GHERKIN_VERSION}"
52-
testCompile "io.cucumber:cucumber-picocontainer:${CUCUMBER_PICOCONTAINER_VERSION}"
53-
testCompile "org.mockito:mockito-all:${MOCKITO_VERSION}"
54-
testCompile "com.shazam:shazamcrest:${SHAZAMCREST_VERSION}"
55-
testCompile "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
56-
testCompile group: "junit", name: "junit", version: "${JUNIT_4_VERSION}"
57-
58-
testCompile project(':core').sourceSets.test.output
59-
testCompile project(':profile').sourceSets.test.output
33+
implementation project(":profile")
34+
implementation project(":core")
35+
implementation project(":output")
36+
implementation project(":common")
37+
implementation project(":custom")
38+
39+
implementation group: "info.picocli", name: "picocli", version: "${PICOCLI_VERSION}"
40+
implementation group: "com.google.code.gson", name: "gson", version: "${GSON_VERSION}"
41+
42+
implementation group: "com.google.inject", name: "guice", version: "${GUICE_VERSION}"
43+
implementation "com.fasterxml.jackson.core:jackson-core:${JACKSON_VERSION}"
44+
implementation "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
45+
46+
testImplementation project(":common").sourceSets.test.output
47+
testImplementation "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
48+
testImplementation "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
49+
testImplementation "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
50+
testImplementation "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
51+
testImplementation "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
52+
testImplementation "io.cucumber:cucumber-junit:${CUCUMBER_VERSION}"
53+
testImplementation "io.cucumber:cucumber-java:${CUCUMBER_VERSION}"
54+
testImplementation "io.cucumber:cucumber-java8:${CUCUMBER_VERSION}"
55+
testImplementation "io.cucumber:gherkin:${GHERKIN_VERSION}"
56+
testImplementation "io.cucumber:cucumber-picocontainer:${CUCUMBER_PICOCONTAINER_VERSION}"
57+
testImplementation "org.mockito:mockito-all:${MOCKITO_VERSION}"
58+
testImplementation "com.shazam:shazamcrest:${SHAZAMCREST_VERSION}"
59+
testImplementation "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
60+
testImplementation group: "junit", name: "junit", version: "${JUNIT_4_VERSION}"
61+
62+
testImplementation project(':core').sourceSets.test.output
63+
testImplementation project(':profile').sourceSets.test.output
6064

6165
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_JUPITER_VERSION}")
6266

@@ -92,8 +96,9 @@ task fatJar(type: Jar) {
9296
attributes 'Main-Class': 'com.scottlogic.datahelix.generator.orchestrator.App'
9397
}
9498
baseName = 'datahelix'
95-
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
99+
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
96100
with jar
101+
duplicatesStrategy = 'warn'
97102
archiveName = "${baseName}.${extension}"
98103
}
99104

@@ -128,7 +133,7 @@ jar {
128133
}
129134

130135
application {
131-
mainClassName = 'com.scottlogic.datahelix.generator.orchestrator.App'
136+
mainClass.set('com.scottlogic.datahelix.generator.orchestrator.App')
132137
}
133138

134139
project.ext.ghToken = project.hasProperty('ghToken') ? project.getProperty('ghToken') : System.getenv('GH_TOKEN') ?: null

output/build.gradle

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,32 @@
1515
*/
1616

1717
dependencies {
18-
compile project(':common')
18+
implementation project(':common')
1919

20-
compile "org.apache.commons:commons-csv:${COMMONS_CSV_VERSION}"
21-
compile "com.google.inject:guice:${GUICE_VERSION}"
20+
implementation "org.apache.commons:commons-csv:${COMMONS_CSV_VERSION}"
21+
implementation "com.google.inject:guice:${GUICE_VERSION}"
22+
implementation "com.fasterxml.jackson.core:jackson-core:${JACKSON_VERSION}"
23+
implementation "com.fasterxml.jackson.core:jackson-annotations:${JACKSON_VERSION}"
24+
implementation "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
2225

2326
constraints {
24-
compile('com.google.guava:guava:30.0-jre') {
27+
implementation('com.google.guava:guava:30.0-jre') {
2528
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
2629
}
27-
compile('com.google.guava:guava:30.0-android') {
30+
implementation('com.google.guava:guava:30.0-android') {
2831
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
2932
}
3033
}
3134

32-
testCompile project(":common").sourceSets.test.output
33-
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
34-
testCompile "junit:junit:${JUNIT_4_VERSION}"
35-
testCompile "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
36-
testCompile "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
37-
testCompile "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
38-
testCompile "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
39-
testCompile "org.mockito:mockito-all:${MOCKITO_VERSION}"
40-
testCompile "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
35+
testImplementation project(":common").sourceSets.test.output
36+
testImplementation "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
37+
testImplementation "junit:junit:${JUNIT_4_VERSION}"
38+
testImplementation "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
39+
testImplementation "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
40+
testImplementation "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
41+
testImplementation "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
42+
testImplementation "org.mockito:mockito-all:${MOCKITO_VERSION}"
43+
testImplementation "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
4144
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_JUPITER_VERSION}")
4245
}
4346

playground/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "org.seleniumhq.selenium:selenium-java:${SELENIUM_VERSION}"
15-
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
16-
testCompile "junit:junit:${JUNIT_4_VERSION}"
17-
testCompile "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
18-
testCompile "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
19-
testCompile "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
20-
testCompile "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
14+
testImplementation "org.seleniumhq.selenium:selenium-java:${SELENIUM_VERSION}"
15+
testImplementation "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
16+
testImplementation "junit:junit:${JUNIT_4_VERSION}"
17+
testImplementation "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
18+
testImplementation "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
19+
testImplementation "org.junit.jupiter:junit-jupiter-params:${JUNIT_JUPITER_VERSION}"
20+
testImplementation "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
2121
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_JUPITER_VERSION}")
2222

2323
constraints {
24-
compile('com.google.guava:guava:30.0-jre') {
24+
implementation('com.google.guava:guava:30.0-jre') {
2525
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
2626
}
27-
compile('com.google.guava:guava:30.0-android') {
27+
implementation('com.google.guava:guava:30.0-android') {
2828
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
2929
}
3030
}

profile/build.gradle

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
* This file was generated by the Gradle "init" task.
1919
*/
2020
dependencies {
21-
compile project(":common")
22-
compile project(":custom")
23-
compile project(":core")
24-
compile group: "org.apache.commons", name: "commons-csv", version: "${COMMONS_CSV_VERSION}"
25-
compile group: "commons-io", name: "commons-io", version: "${COMMONS_IO_VERSION}"
26-
compile group: "com.google.inject", name: "guice", version: "${GUICE_VERSION}"
27-
compile "com.worldturner.medeia:medeia-validator-jackson:${MEDEIA_VALIDATOR_JACKSON_VERSION}"
28-
compile "org.leadpony.justify:justify:${LEADPONY_JUSTIFY_VERSION}"
29-
compile "org.glassfish:javax.json:${GLASSFISH_VERSION}"
30-
compile "com.fasterxml.jackson.core:jackson-core:${JACKSON_VERSION}"
31-
compile "com.fasterxml.jackson.core:jackson-annotations:${JACKSON_VERSION}"
32-
compile "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
21+
implementation project(":common")
22+
implementation project(":custom")
23+
implementation project(":core")
24+
implementation group: "org.apache.commons", name: "commons-csv", version: "${COMMONS_CSV_VERSION}"
25+
implementation group: "commons-io", name: "commons-io", version: "${COMMONS_IO_VERSION}"
26+
implementation group: "com.google.inject", name: "guice", version: "${GUICE_VERSION}"
27+
implementation "com.worldturner.medeia:medeia-validator-jackson:${MEDEIA_VALIDATOR_JACKSON_VERSION}"
28+
implementation "org.leadpony.justify:justify:${LEADPONY_JUSTIFY_VERSION}"
29+
implementation "org.glassfish:javax.json:${GLASSFISH_VERSION}"
30+
implementation "com.fasterxml.jackson.core:jackson-core:${JACKSON_VERSION}"
31+
implementation "com.fasterxml.jackson.core:jackson-annotations:${JACKSON_VERSION}"
32+
implementation "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
3333
implementation "com.github.javafaker:javafaker:${FAKER_VERSION}"
3434
implementation ('org.yaml:snakeyaml') {
3535
version {
@@ -38,28 +38,28 @@ dependencies {
3838
}
3939

4040
constraints {
41-
compile('com.google.guava:guava:30.0-jre') {
41+
implementation('com.google.guava:guava:30.0-jre') {
4242
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
4343
}
44-
compile('com.google.guava:guava:30.0-android') {
44+
implementation('com.google.guava:guava:30.0-android') {
4545
because 'Versions prior to 30.0 are impacted by CVE-2020-8908'
4646
}
4747
}
4848

49-
testCompile project(":common").sourceSets.test.output
50-
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
51-
testCompile "junit:junit:${JUNIT_4_VERSION}"
52-
testCompile "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
53-
testCompile "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
54-
testCompile "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
55-
testCompile "org.junit.jupiter:junit-jupiter-params:${JUNIT_PLATFORM_RUNNER_VERSION}"
56-
testCompile "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
57-
testCompile "com.shazam:shazamcrest:${SHAZAMCREST_VERSION}"
49+
testImplementation project(":common").sourceSets.test.output
50+
testImplementation "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
51+
testImplementation "junit:junit:${JUNIT_4_VERSION}"
52+
testImplementation "org.junit.platform:junit-platform-runner:${JUNIT_PLATFORM_RUNNER_VERSION}"
53+
testImplementation "org.junit.vintage:junit-vintage-engine:${JUNIT_JUPITER_VERSION}"
54+
testImplementation "org.hamcrest:java-hamcrest:${HAMCREST_VERSION}"
55+
testImplementation "org.junit.jupiter:junit-jupiter-params:${JUNIT_PLATFORM_RUNNER_VERSION}"
56+
testImplementation "org.junit.jupiter:junit-jupiter-engine:${JUNIT_JUPITER_VERSION}"
57+
testImplementation "com.shazam:shazamcrest:${SHAZAMCREST_VERSION}"
5858
testImplementation "org.mockito:mockito-junit-jupiter:${MOCKITO_JUNIT_JUPITER_VERSION}"
5959
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_JUPITER_VERSION}")
6060
testImplementation "org.threeten:threeten-extra:${THREE_TEN_VERSION}"
6161

62-
testCompile project(":core").sourceSets.test.output
62+
testImplementation project(":core").sourceSets.test.output
6363

6464
implementation('org.jetbrains.kotlin:kotlin-stdlib') {
6565
version {

0 commit comments

Comments
 (0)