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 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() } }