From f574c2b836a23eaf8a3e244cc2e81ea8f2c4d30a Mon Sep 17 00:00:00 2001 From: Rahul Somasunderam Date: Sat, 24 Sep 2022 14:14:30 -0700 Subject: [PATCH] chore: Move dependencies for JDK17 to implementation --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 2650e0a..504e4bf 100644 --- a/build.gradle +++ b/build.gradle @@ -43,8 +43,8 @@ dependencies { compileOnly 'org.codehaus.groovy:groovy-all:3.0.13' implementation("javax.xml.bind:jaxb-api:2.3.1") - testRuntimeOnly 'org.glassfish.jaxb:jaxb-runtime:2.3.6' - testRuntimeOnly 'com.sun.xml.bind:jaxb-core:4.0.1' + implementation('org.glassfish.jaxb:jaxb-runtime:2.3.6') + implementation('com.sun.xml.bind:jaxb-core:4.0.1') testImplementation 'org.spockframework:spock-core:2.2-groovy-4.0' testImplementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"