17 lines
461 B
Groovy
17 lines
461 B
Groovy
version '0.1-SNAPSHOT'
|
|
|
|
ext {
|
|
jline_version = '3.9.1-SNAPSHOT';
|
|
}
|
|
|
|
dependencies {
|
|
/* Core */
|
|
compile_excludeCopy project(':core')
|
|
|
|
compile (group: 'org.slf4j', name: 'jul-to-slf4j', version: slf4j_version)
|
|
compile (group: 'org.slf4j', name: 'slf4j-simple', version: slf4j_version)
|
|
|
|
compile (group: 'org.jline', name: 'jline', version: jline_version)
|
|
compile (group: 'org.jline', name: 'jline-terminal-jna', version: jline_version)
|
|
}
|