Coree/scripts/build.gradle
2020-02-02 21:44:38 +01:00

28 lines
No EOL
563 B
Groovy

plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
}
group 'fr.spacefox.coree'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'com.drewnoakes:metadata-extractor:2.12.0'
implementation 'org.apache.commons:commons-csv:1.7'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}