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

24 lines
943 B
Groovy

ext {
versions = [junit: '5.5.2']
libs = [
bukkit : [lib: 'org.bukkit:bukkit:1.12.2-R0.1-SNAPSHOT', exclude: [
'com.google.code.gson:gson',
'com.googlecode.json-simple:json-simple',
'commons-lang:commons-lang',
'org.yaml:snakeyaml'
]],
commons_text: 'org.apache.commons:commons-text:1.9',
lombok : 'org.projectlombok:lombok:1.18.12',
refobj : 'ru.dmitriymx:reflection-object:1.0-BETA',
test : [
junit5: [
"org.junit.jupiter:junit-jupiter-api:$versions.junit",
"org.junit.jupiter:junit-jupiter-engine:$versions.junit"
],
mock : ['org.mockito:mockito-core:1.10.19'],
h2db : 'com.h2database:h2:1.4.200'
]
]
}