0
This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ghast-tools/tools/build.gradle

41 lines
807 B
Groovy

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 = moduleVersion
jar.archiveBaseName.set(moduleName)
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()
}