Skip to content

Commit

Permalink
update crossscheck
Browse files Browse the repository at this point in the history
  • Loading branch information
markaren committed Aug 16, 2018
1 parent fb5380e commit 00d1712
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/Crosscheck/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

plugins {
id "application"
id "org.jetbrains.kotlin.jvm" version "1.2.51"
id "org.jetbrains.kotlin.jvm" version "1.2.60"
id "com.github.johnrengelman.shadow" version "2.0.4"
}

Expand All @@ -13,20 +13,20 @@ repositories {
mavenCentral()
}

def slf4j_version = '1.7.25'
def junit_version = '5.2.0'

dependencies {

compile group: 'info.picocli', name: 'picocli', version: '3.1.0'
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.5'

compile group: 'no.mechatronics.sfi.fmi4j', name: 'fmi-import', version: '0.7.4'
compile group: 'no.mechatronics.sfi.fmi4j', name: 'fmi-import-solvers-apache-math3', version: '0.7.4'
def fmi4j_version = '0.8'
compile group: 'no.mechatronics.sfi.fmi4j', name: 'fmi-import', version: fmi4j_version
compile group: 'no.mechatronics.sfi.fmi4j', name: 'fmi-import-solvers-apache-math3', version: fmi4j_version

def slf4j_version = '1.7.25'
compile group: 'org.slf4j', name: 'slf4j-api', version: slf4j_version
runtime group: 'org.slf4j', name: 'slf4j-log4j12', version: slf4j_version

def junit_version = '5.2.0'
testCompile("org.junit.jupiter:junit-jupiter-api:$junit_version")
testCompile("org.junit.jupiter:junit-jupiter-params:$junit_version")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit_version")
Expand Down

0 comments on commit 00d1712

Please sign in to comment.