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/build.gradle

39 lines
901 B
Groovy

plugins {
id 'java'
}
apply plugin: FilteringDependenciesPlugin
apply from: 'libs.gradle'
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 { url 'https://hub.spigotmc.org/nexus/content/groups/public' }
maven { url 'https://dmx-mc-project.gitlab.io/maven-repository/' }
}
dependencies {
compileOnly libs.lombok
annotationProcessor libs.lombok
compileOnly fildep.filter(libs.bukkit)
implementation libs.commons_text
implementation libs.refobj
testImplementation libs.test.junit5
testImplementation libs.test.mock
testImplementation fildep.filter(libs.bukkit)
testImplementation libs.test.h2db
}
test {
useJUnitPlatform()
}