diff options
author | Reece Mackie <20544390+Rover656@users.noreply.github.com> | 2021-05-21 14:45:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 16:45:58 +0300 |
commit | 494e8a6d34bb47e2e6f5c4301d0dcb8863e45f23 (patch) | |
tree | e59ada96cb212d9fd9439bc7ed67ea347b87ffcb /GuiTest | |
parent | eb168c435be6d4cccb37a4b21dd616571b81917b (diff) | |
download | LibGui-494e8a6d34bb47e2e6f5c4301d0dcb8863e45f23.tar.gz LibGui-494e8a6d34bb47e2e6f5c4301d0dcb8863e45f23.tar.bz2 LibGui-494e8a6d34bb47e2e6f5c4301d0dcb8863e45f23.zip |
Port to 21w20a. Fixes #109 (#110)4.0.0-alpha.2
* 21w20a. Fixes #109
* Indentation and spacing fixes
Diffstat (limited to 'GuiTest')
-rw-r--r-- | GuiTest/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GuiTest/build.gradle b/GuiTest/build.gradle index bbb0f0f..02c6d2e 100644 --- a/GuiTest/build.gradle +++ b/GuiTest/build.gradle @@ -2,8 +2,8 @@ plugins { id 'fabric-loom' } -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = JavaVersion.VERSION_16 +targetCompatibility = JavaVersion.VERSION_16 if(rootProject.file('private.gradle').exists()) { //Publishing details apply from: rootProject.file('private.gradle') @@ -25,7 +25,7 @@ loom { repositories { mavenLocal(); - maven { url "http://server.bbkr.space:8081/artifactory/libs-release" } + maven { url "https://server.bbkr.space/artifactory/libs-release" } } dependencies { |