Files
SmartCSV.fx/build.gradle

46 lines
1.8 KiB
Groovy
Raw Normal View History

2019-07-08 20:11:50 +02:00
plugins {
id 'idea'
id 'java'
id 'groovy'
id 'application'
2019-10-03 18:03:01 +02:00
id 'org.openjfx.javafxplugin' version '0.0.8'
2019-07-08 20:11:50 +02:00
}
2015-11-28 23:06:14 +01:00
repositories {
mavenCentral()
jcenter()
}
2019-07-08 20:11:50 +02:00
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
2015-11-28 23:06:14 +01:00
dependencies {
2019-10-23 00:36:08 +02:00
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
2019-10-23 05:57:06 +02:00
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.2'
2019-10-23 00:36:08 +02:00
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '2.2'
2019-10-23 05:08:49 +02:00
testCompile group: 'org.mockito', name: 'mockito-core', version:'3.1.0'
2020-10-02 23:40:31 +02:00
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.6'
compile group: 'org.springframework', name:'spring-context', version: '5.2.9.RELEASE'
2015-11-28 23:06:14 +01:00
compile group: 'net.sf.supercsv', name: 'super-csv', version: '2.4.0'
2020-10-02 23:40:31 +02:00
compile group: 'commons-validator', name: 'commons-validator', version: '1.7'
2019-07-08 20:11:50 +02:00
compile group: 'de.jensd', name: 'fontawesomefx-commons', version: '11.0'
compile group: 'de.jensd', name: 'fontawesomefx-fontawesome', version: '4.7.0-11'
compile group: 'de.jensd', name: 'fontawesomefx-materialdesignfont', version: '1.7.22-11'
compile group: 'de.jensd', name: 'fontawesomefx-materialicons', version: '2.2.0-11'
2020-10-02 23:40:31 +02:00
compile group: 'org.controlsfx', name: 'controlsfx', version: '11.0.2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
2018-07-08 14:01:13 +02:00
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
2020-10-02 23:40:31 +02:00
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.5'
2015-11-28 23:06:14 +01:00
}
2016-07-23 09:36:40 +02:00
2019-10-23 05:57:06 +02:00
test {
useJUnitPlatform()
}
2019-07-08 20:11:50 +02:00
group 'ninja.javafx'
2019-10-24 21:55:05 +02:00
version '1.0.0'
mainClassName = 'ninja.javafx.smartcsv.Main'