2021-04-17 13:50:56 +02:00
|
|
|
/*
|
|
|
|
* This file is a part of the SteamWar software.
|
|
|
|
*
|
2021-04-18 21:58:54 +02:00
|
|
|
* Copyright (C) 2021 SteamWar.de-Serverteam
|
2021-04-17 13:50:56 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'base'
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'steamwar'
|
|
|
|
version '1.0'
|
|
|
|
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
2022-09-24 20:05:17 +02:00
|
|
|
srcDirs = ['src/', 'build/generated/sources/annotationProcessor/java/main/']
|
2021-04-17 13:50:56 +02:00
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs = ['src/']
|
|
|
|
exclude '**/*.java', '**/*.kt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-02-23 12:16:44 +01:00
|
|
|
// implementation 'yoyosource:YAPION:0.25.3'
|
|
|
|
implementation files("${projectDir}/../libs/YAPION-SNAPSHOT.jar")
|
2021-04-18 14:27:52 +02:00
|
|
|
|
2021-12-04 11:03:11 +01:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.22'
|
|
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.22'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.22'
|
|
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
|
2021-04-17 13:50:56 +02:00
|
|
|
|
2022-08-27 15:07:10 +02:00
|
|
|
implementation project(":BauSystem_Linkage")
|
|
|
|
annotationProcessor project(":BauSystem_Linkage")
|
|
|
|
|
2022-06-07 20:12:13 +02:00
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
|
2022-03-29 12:29:19 +02:00
|
|
|
compileOnly 'com.mojang:authlib:1.5.25'
|
|
|
|
compileOnly 'io.netty:netty-all:4.1.68.Final'
|
2022-06-27 20:19:01 +02:00
|
|
|
|
2022-06-27 21:17:53 +02:00
|
|
|
compileOnly swdep('Spigot-1.19')
|
|
|
|
compileOnly swdep('WorldEdit-1.15')
|
|
|
|
compileOnly swdep('SpigotCore')
|
2022-09-24 20:02:01 +02:00
|
|
|
annotationProcessor swdep('SpigotCore')
|
2021-04-17 13:50:56 +02:00
|
|
|
}
|