-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
43 lines (38 loc) · 1.17 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import io.github.frontrider.godle.dsl.versioning.asGodot
import io.github.frontrider.godle.publish.dsl.AssetCategories
import io.github.frontrider.godle.publish.dsl.currentCommitHash
import godle.license.MIT
plugins{
id("io.github.frontrider.godle") version "0.13.0"
id("io.github.frontrider.godle-publish") version "0.3.2"
}
group = "io.github.frontrider"
version = "0.1.0"
godle{
asGodot("3.5.1")
addons {
clearAddonsBeforeInstall = false
install{
}
}
}
val godotUsername:String by project
val godotPassword:String by project
godlePublish{
create("Godle"){
description = """
Companion addon for the Godle Gradle plugin.
""".trimIndent()
supportLevel.set("community")
downloadProvider.set("GitHub")
category = AssetCategories.Tools
godotVersion.set("3.5")
vcsUrl.set("https://github.com/Frontrider/Godle-Godot-Addon")
iconUrl.set("https://raw.githubusercontent.com/Frontrider/Godot-Scene-Browser/${currentCommitHash()}/icon.png")
license = MIT()
credentials{
username = godotUsername
password = godotPassword
}
}
}