feat: ✨ Add flutter task group, add new tasks
This commit is contained in:
22
build.gradle
22
build.gradle
@ -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 }
|
||||
|
Reference in New Issue
Block a user