From 419e3ee50ba6f5b7adae387578c6c95be46e00d8 Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 20 Oct 2021 10:20:45 +0200 Subject: [PATCH 1/2] [DAT-637] Fix variable names in gradle.properties (#4) --- src/main/groovy/de.cyface.android-publish.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/groovy/de.cyface.android-publish.gradle b/src/main/groovy/de.cyface.android-publish.gradle index 3d1a6aa..b828837 100644 --- a/src/main/groovy/de.cyface.android-publish.gradle +++ b/src/main/groovy/de.cyface.android-publish.gradle @@ -85,8 +85,8 @@ publishing { maven { url = uri("https://maven.pkg.github.com/cyface-de/android-backend") credentials { - username = project.findProperty("github.user").toString() - password = project.findProperty("github.token").toString() + username = project.findProperty("githubUser").toString() + password = project.findProperty("githubToken").toString() } } From e2e421649a2ffa7b007efe1dcbfbbb6ac431bf6b Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 20 Oct 2021 10:21:39 +0200 Subject: [PATCH 2/2] Set version to 1.0.1 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c16ddf1..1396109 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,7 @@ plugins { } group = "de.cyface" -version = "1.0.0" +version = "1.0.1" repositories { gradlePluginPortal() // so that external plugins can be resolved in dependencies section