25 lines
987 B
Groovy
25 lines
987 B
Groovy
ext {
|
|
versions = [junit: '5.5.2']
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
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'
|
|
]
|
|
]
|
|
} |