Files
SmartCSV.fx/build.gradle

53 lines
2.1 KiB
Groovy
Raw Normal View History

2019-07-08 20:11:50 +02:00
plugins {
id 'idea'
id 'java'
id 'groovy'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.10'
2019-07-08 20:11:50 +02:00
}
2015-11-28 23:06:14 +01:00
repositories {
mavenCentral()
jcenter()
}
2021-10-02 07:28:16 +02:00
apply plugin: 'java'
sourceCompatibility = 17
targetCompatibility = 17
2019-07-08 20:11:50 +02:00
javafx {
version = "17"
2019-07-08 20:11:50 +02:00
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
2021-12-10 00:51:38 +01:00
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.8.2'
2021-10-02 07:28:16 +02:00
testImplementation group: 'org.hamcrest', name: 'hamcrest-library', version: '2.2'
testImplementation group: 'org.mockito', name: 'mockito-core', version:'3.1.0'
implementation group: 'org.apache.groovy', name: 'groovy', version: '4.0.0-rc-1'
2021-12-10 00:51:38 +01:00
implementation group: 'org.springframework', name:'spring-context', version: '5.3.13'
implementation group: 'de.siegmar', name: 'fastcsv', version: '2.1.0'
2021-10-02 07:28:16 +02:00
implementation group: 'commons-validator', name: 'commons-validator', version: '1.7'
implementation group: 'de.jensd', name: 'fontawesomefx-commons', version: '11.0'
implementation group: 'de.jensd', name: 'fontawesomefx-fontawesome', version: '4.7.0-11'
implementation group: 'de.jensd', name: 'fontawesomefx-materialdesignfont', version: '1.7.22-11'
implementation group: 'de.jensd', name: 'fontawesomefx-materialicons', version: '2.2.0-11'
implementation group: 'org.controlsfx', name: 'controlsfx', version: '11.1.0'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.14.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.14.1'
implementation group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.7'
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'
2021-11-22 22:11:04 +01:00
version '1.0.1'
mainClassName = 'ninja.javafx.smartcsv.Main'