diff options
author | isXander <isxander@users.noreply.github.com> | 2022-09-19 19:11:13 +0100 |
---|---|---|
committer | isXander <isxander@users.noreply.github.com> | 2022-09-19 19:11:13 +0100 |
commit | de1c8a317226b58fe03497027136eaed1adfd808 (patch) | |
tree | 5f97d6d91bc37f83d8de8c6f4a335d06a014cee0 /build.gradle.kts | |
parent | 904e4d61b6cf84c807a99e66fc70527b01ae6fcc (diff) | |
download | YetAnotherConfigLib-de1c8a317226b58fe03497027136eaed1adfd808.tar.gz YetAnotherConfigLib-de1c8a317226b58fe03497027136eaed1adfd808.tar.bz2 YetAnotherConfigLib-de1c8a317226b58fe03497027136eaed1adfd808.zip |
1.4.0
improved tooltips
`ButtonOption` now consumes itself, so you can access it when building.
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 74f830a..20b921e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,7 +16,7 @@ plugins { val ciRun = System.getenv().containsKey("GITHUB_ACTIONS") group = "dev.isxander" -version = "1.3.0" +version = "1.4.0" if (ciRun) version = "$version-SNAPSHOT" @@ -55,11 +55,11 @@ dependencies { modImplementation("net.fabricmc:fabric-loader:$fabricLoaderVersion") modImplementation(fabricApi.module("fabric-resource-loader-v0", "0.61.0+1.19.2")) - - "testmodImplementation"(sourceSets.main.get().output) - "modTestmodImplementation"("com.terraformersmc:modmenu:4.0.6") { + modImplementation("com.terraformersmc:modmenu:4.0.6") { exclude(module = "fabric-loader") } + + "testmodImplementation"(sourceSets.main.get().output) } java { |