mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 13:38:23 +02:00
changed to jdk 17 LTS
This commit is contained in:
38
build.gradle
38
build.gradle
@@ -11,29 +11,33 @@ repositories {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply plugin: 'java'
|
||||||
|
sourceCompatibility = 17
|
||||||
|
targetCompatibility = 17
|
||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
|
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
|
||||||
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
|
||||||
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.2'
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.2'
|
||||||
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '2.2'
|
testImplementation group: 'org.hamcrest', name: 'hamcrest-library', version: '2.2'
|
||||||
testCompile group: 'org.mockito', name: 'mockito-core', version:'3.1.0'
|
testImplementation group: 'org.mockito', name: 'mockito-core', version:'3.1.0'
|
||||||
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.6'
|
implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.6'
|
||||||
compile group: 'org.springframework', name:'spring-context', version: '5.2.9.RELEASE'
|
implementation group: 'org.springframework', name:'spring-context', version: '5.3.10'
|
||||||
compile group: 'net.sf.supercsv', name: 'super-csv', version: '2.4.0'
|
implementation group: 'net.sf.supercsv', name: 'super-csv', version: '2.4.0'
|
||||||
compile group: 'commons-validator', name: 'commons-validator', version: '1.7'
|
implementation group: 'commons-validator', name: 'commons-validator', version: '1.7'
|
||||||
compile group: 'de.jensd', name: 'fontawesomefx-commons', version: '11.0'
|
implementation group: 'de.jensd', name: 'fontawesomefx-commons', version: '11.0'
|
||||||
compile group: 'de.jensd', name: 'fontawesomefx-fontawesome', version: '4.7.0-11'
|
implementation group: 'de.jensd', name: 'fontawesomefx-fontawesome', version: '4.7.0-11'
|
||||||
compile group: 'de.jensd', name: 'fontawesomefx-materialdesignfont', version: '1.7.22-11'
|
implementation group: 'de.jensd', name: 'fontawesomefx-materialdesignfont', version: '1.7.22-11'
|
||||||
compile group: 'de.jensd', name: 'fontawesomefx-materialicons', version: '2.2.0-11'
|
implementation group: 'de.jensd', name: 'fontawesomefx-materialicons', version: '2.2.0-11'
|
||||||
compile group: 'org.controlsfx', name: 'controlsfx', version: '11.0.2'
|
implementation group: 'org.controlsfx', name: 'controlsfx', version: '11.0.2'
|
||||||
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
|
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
|
||||||
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
|
implementation 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'
|
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
|
||||||
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.5'
|
implementation group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.5'
|
||||||
}
|
}
|
||||||
|
|
||||||
test {
|
test {
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
Reference in New Issue
Block a user