From 090acb1780985d9b5e977e6d06c1b053b59ce695 Mon Sep 17 00:00:00 2001 From: Patrick Dowler Date: Thu, 11 Dec 2025 14:58:30 -0800 Subject: [PATCH] cred: update build file --- cred/build.gradle | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/cred/build.gradle b/cred/build.gradle index 2af3216..d0f5e35 100644 --- a/cred/build.gradle +++ b/cred/build.gradle @@ -21,18 +21,18 @@ war { } dependencies { - compile 'org.opencadc:cadc-util:[1.11.2,2.0)' - compile 'org.opencadc:cadc-rest:[1.4.5,)' - compile 'org.opencadc:cadc-vosi:[1.4.9,)' - compile 'org.opencadc:cadc-log:[1.2.1,)' - compile 'org.opencadc:cadc-cdp:[1.4.0,)' + implementation 'org.opencadc:cadc-util:[1.11.2,2.0)' + implementation 'org.opencadc:cadc-rest:[1.4.5,)' + implementation 'org.opencadc:cadc-vosi:[1.4.9,)' + implementation 'org.opencadc:cadc-log:[1.2.1,)' + implementation 'org.opencadc:cadc-cdp:[1.4.0,)' - runtime 'org.opencadc:cadc-registry:[1.7.6,)' - runtime 'org.opencadc:cadc-gms:[1.0.12,)' - runtime 'org.opencadc:cadc-access-control-identity:[1.2.5,)' + runtimeOnly 'org.opencadc:cadc-registry:[1.7.6,)' + runtimeOnly 'org.opencadc:cadc-gms:[1.0.12,)' + runtimeOnly 'org.opencadc:cadc-access-control-identity:[1.2.5,)' - testCompile 'junit:junit:[4.0,)' + testImplementation 'junit:junit:[4.0,)' - intTestCompile 'org.opencadc:cadc-test-vosi:[1.0.14,)' - intTestCompile 'javax.servlet:javax.servlet-api:[3.1.0,)' + intTestImplementation 'org.opencadc:cadc-test-vosi:[1.0.14,)' + intTestImplementation 'javax.servlet:javax.servlet-api:[3.1.0,)' }