diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index 877b662..85e6648 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -17,15 +17,7 @@
-
-
-
-
-
-
-
-
-
+
diff --git a/build.gradle.kts b/build.gradle.kts
index 6907ff4..6ceb88d 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,7 +12,7 @@ plugins {
id("com.avast.gradle.docker-compose") version "0.14.0"
}
-group = "com.github.flecomte"
+group = "io.github.flecomte"
version = versioning.info.tag
repositories {
@@ -97,3 +97,13 @@ publishing {
}
}
}
+
+tasks.withType().configureEach {
+ onlyIf {
+ versioning.info.run {
+ !dirty && tag != null && tag.matches("""[0-9]+\.[0-9]+\.[0-9]+""".toRegex())
+ }
+ }
+
+ dependsOn(tasks.test)
+}