2015-11-28 23:06:14 +01:00
|
|
|
group 'ninja.javafx'
|
2015-12-18 01:16:37 +01:00
|
|
|
version '0.5-SNAPSHOT'
|
2015-11-28 23:06:14 +01:00
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
apply plugin:'application'
|
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
mainClassName = 'ninja.javafx.smartcsv.fx.SmartCSV'
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
2015-12-07 22:41:59 +01:00
|
|
|
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
|
2015-11-28 23:06:14 +01:00
|
|
|
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
|
|
|
|
|
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.4.5'
|
|
|
|
|
compile group: 'org.springframework', name:'spring-context', version: '4.2.3.RELEASE'
|
|
|
|
|
compile group: 'net.sf.supercsv', name: 'super-csv', version: '2.4.0'
|
|
|
|
|
compile group: 'com.typesafe', name: 'config', version: '1.3.0'
|
|
|
|
|
compile group: 'commons-validator', name: 'commons-validator', version: '1.4.1'
|
|
|
|
|
}
|