Skip to content

Commit

Permalink
bump fmi4j version
Browse files Browse the repository at this point in the history
  • Loading branch information
markaren committed Nov 5, 2020
1 parent 9c10d12 commit 6c43230
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ println "Gradle version is ${gradle.getGradleVersion()}"

ext.slf4j_version = '1.7.25'
ext.picocli_version = '4.5.0'
ext.fmi4j_version = '0.33.3'
ext.fmi4j_version = '0.33.4'

wrapper {
distributionType = Wrapper.DistributionType.ALL
Expand All @@ -19,17 +19,17 @@ subprojects { sub ->

repositories {
mavenCentral()
maven { url "https://dl.bintray.com/ntnu-ihb/mvn" }
maven { url "https://dl.bintray.com/ntnu-ihb/mvn" }
}

dependencies {

sub.plugins.withId('kotlin') {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
}

}

sub.plugins.withId('kotlin') {
compileKotlin {
kotlinOptions {
Expand All @@ -53,7 +53,8 @@ tasks.create('cleanTemp') {
temp.listFiles(new FilenameFilter() {
@Override
boolean accept(File dir, String name) {
return dir == temp && name.startsWith("fmi4j_")
return dir == temp && name.startsWith("fmi4j_") ||
dir == temp && name.startsWith("fmu_proxy")
}
}).each {
it.deleteDir()
Expand Down

0 comments on commit 6c43230

Please sign in to comment.