0

gradle: разделение на gradle-module's

This commit is contained in:
2021-01-07 04:47:46 +03:00
parent 9a14817ff8
commit 368c495886
28 changed files with 9 additions and 8 deletions

View File

@@ -1,40 +0,0 @@
import libs.LibsPlugin
plugins {
id 'java'
}
apply plugin: LibsPlugin
def publishScript = file(rootProject.getProjectDir().getPath() + '/publish.gradle')
if (publishScript.exists()) {
apply from: publishScript.path
}
project.group = projectGroup
project.version = projectVersion
repositories {
mavenLocal()
mavenCentral()
maven repos.mavenSpigotMC
maven repos.mavenDmxMcProject
}
dependencies {
compileOnly libs.lombok
annotationProcessor libs.lombok
compileOnly libs.bukkit
implementation libs.commons_text
implementation libs.refobj
testImplementation libs.test.junit5
testImplementation libs.test.mock
testImplementation libs.bukkit
testImplementation libs.test.h2db
}
test {
useJUnitPlatform()
}