From e313ffc635a889cc736c0b056a2c7db3407d0098 Mon Sep 17 00:00:00 2001 From: Arnaud Roques Date: Fri, 12 May 2023 20:32:38 +0200 Subject: [PATCH] chore: fix syntax --- build.gradle.kts | 2 +- plantuml-mit/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7d435cc2c..eb03a09d3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -121,7 +121,7 @@ publishing { // val releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" // val snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/" // url = uri(if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl) - url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") credentials { username = System.getenv("OSSRH_USERNAME") password = System.getenv("OSSRH_PASSWORD") diff --git a/plantuml-mit/build.gradle.kts b/plantuml-mit/build.gradle.kts index 0c398f076..f9a5afd76 100644 --- a/plantuml-mit/build.gradle.kts +++ b/plantuml-mit/build.gradle.kts @@ -150,7 +150,7 @@ publishing { // val releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" // val snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/" // url = uri(if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl) - url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") credentials { username = System.getenv("OSSRH_USERNAME") password = System.getenv("OSSRH_PASSWORD")