From 8059cccc50d93cd675bb86e11e0b66255ff26028 Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Sun, 19 Sep 2021 19:23:45 +0200 Subject: [PATCH] Specifiy group id in build gradle file instead of settings --- app/build.gradle.kts | 3 +++ settings.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 36fbf08..d1d401e 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -14,6 +14,9 @@ plugins { application } +group = "de.jotoho" +version = "0.1.0" + repositories { // Use Maven Central for resolving dependencies. mavenCentral() diff --git a/settings.gradle.kts b/settings.gradle.kts index 9c984f8..d59993a 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -7,5 +7,5 @@ * in the user manual at https://docs.gradle.org/7.2/userguide/multi_project_builds.html */ -rootProject.name = "de.jotoho.waituntil" +rootProject.name = "waituntil" include("app")