From 4b18260d7ece6f403c053acdd8801c5b37f19c52 Mon Sep 17 00:00:00 2001 From: Matt Domsch Date: Fri, 7 May 2021 15:09:36 -0500 Subject: [PATCH] Release 0.2.0 Signed-off-by: Matt Domsch --- build.gradle | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 56afbe4..c7ccc3a 100644 --- a/build.gradle +++ b/build.gradle @@ -10,10 +10,13 @@ plugins { id 'signing' } -version = '0.2.0-SNAPSHOT' +version = '0.2.0' repositories { mavenCentral() + maven { + url "https://s01.oss.sonatype.org/content/repositories/releases/" + } maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" } @@ -27,7 +30,7 @@ dependencies { // Nimbus JOSE JWT // https://mvnrepository.com/artifact/com.nimbusds/nimbus-jose-jwt api group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '9.9' - implementation group: 'com.sailpoint', name: 'ietf-subject-identifiers-model', version: '0.1.0-SNAPSHOT' + implementation group: 'com.sailpoint', name: 'ietf-subject-identifiers-model', version: '0.1.0' //implementation files("libs/ietf-subject-identifiers-model-0.1.0-SNAPSHOT.jar") // Use JUnit test framework testImplementation 'junit:junit:4.13.2'