diff options
Diffstat (limited to 'build.gradle')
-rwxr-xr-x | build.gradle | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 677c0a9a..5fafc3ec 100755 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,21 @@ -// For those who want the bleeding edge +/* + * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + * Copyright (C) 2021 cyoung06 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + buildscript { repositories { gradlePluginPortal() @@ -44,12 +61,12 @@ dependencies { implementation "org.java-websocket:Java-WebSocket:1.5.1" implementation "org.json:json:20171018" - compileOnly "org.projectlombok:lombok:1.18.16" + compileOnly "org.projectlombok:lombok:1.18.20" compileOnly files("mods/Hychat-1.12.1-BETA.jar") annotationProcessor "org.projectlombok:lombok:1.18.16" - testCompileOnly "org.projectlombok:lombok:1.18.16" - testAnnotationProcessor "org.projectlombok:lombok:1.18.16" + testCompileOnly "org.projectlombok:lombok:1.18.20" + testAnnotationProcessor "org.projectlombok:lombok:1.18.20" } jar { |