ufes-mestrado-projetopesqui.../docRefNetNeo4J/build.gradle

29 lines
660 B
Groovy

plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation "io.github.erictsangx:kotlin-neo4j:0.0.6"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:+"
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.3'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}