Fix (make use of) transient dependencies.

This commit is contained in:
Michael Lipp 2023-09-14 14:55:50 +02:00
parent 9ba0dd8dc3
commit a045cba998
3 changed files with 2 additions and 5 deletions

View file

@ -16,8 +16,6 @@ dependencies {
implementation project(':org.jdrupes.vmoperator.util')
implementation 'commons-cli:commons-cli:1.5.0'
implementation 'org.freemarker:freemarker:[2.3.32,2.4)'
implementation 'io.kubernetes:client-java:[18.0.0,19)'
runtimeOnly 'com.electronwill.night-config:yaml:[3.6.7,3.7)'
runtimeOnly 'org.slf4j:slf4j-jdk14:[2.0.7,3)'

View file

@ -16,7 +16,6 @@ dependencies {
implementation project(':org.jdrupes.vmoperator.util')
implementation 'commons-cli:commons-cli:1.5.0'
implementation 'org.freemarker:freemarker:[2.3.32,2.4)'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:[2.15.1,3]'
runtimeOnly 'org.slf4j:slf4j-jdk14:[2.0.7,3)'

View file

@ -9,6 +9,6 @@ plugins {
}
dependencies {
implementation 'org.freemarker:freemarker:[2.3.32,2.4)'
implementation 'io.kubernetes:client-java:[18.0.0,19)'
api 'org.freemarker:freemarker:[2.3.32,2.4)'
api 'io.kubernetes:client-java:[18.0.0,19)'
}