feat: Add flutter task group, add new tasks

This commit is contained in:
2024-04-29 20:49:20 +02:00
parent 760e9a6b4e
commit 1cff1ccd04
4 changed files with 84 additions and 3 deletions

View File

@ -12,7 +12,7 @@ plugins {
}
group = 'com.fahrecker'
version = '0.0.1-SNAPSHOT'
version = '0.0.7-SNAPSHOT'
gradlePlugin {
plugins {
@ -23,6 +23,26 @@ gradlePlugin {
}
}
publishing {
repositories {
maven {
name = "Gitea-FHN"
url = uri("https://gitea.fahrecker.com/api/packages/andreas-personal/maven")
def giteaToken = project.findProperty("giteaToken") ?: System.getenv("GITEA_TOKEN")
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = "token ${giteaToken}"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
}
task printClasspath {
doLast {
configurations.runtimeClasspath.each { println it }