change domain

This commit is contained in:
2021-06-30 23:52:39 +02:00
parent c6da94a6e5
commit 0de6f13eee
2 changed files with 12 additions and 10 deletions

View File

@@ -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<PublishToMavenRepository>().configureEach {
onlyIf {
versioning.info.run {
!dirty && tag != null && tag.matches("""[0-9]+\.[0-9]+\.[0-9]+""".toRegex())
}
}
dependsOn(tasks.test)
}