no.ntnu.ihb.fmi4j.FmuPlugin
Owner: Lars Ivar Hatledal
Gradle plugin for simplifying programmatic interaction with FMUs
https://ntnu-ihb.github.io/FMI4j/
Sources: https://github.com/NTNU-IHB/FMI4j
Version 0.15.1 (latest)
0.15.1
Created 07 February 2019.
Gradle plugin for simplifying programmatic interaction with FMUs
Using the plugins DSL:
plugins {
id("no.ntnu.ihb.fmi4j.FmuPlugin") version "0.15.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("no.ntnu.ihb.fmi4j:fmu-plugin:0.15.1")
}
}
apply(plugin = "no.ntnu.ihb.fmi4j.FmuPlugin")
Using the plugins DSL:
plugins {
id "no.ntnu.ihb.fmi4j.FmuPlugin" version "0.15.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "no.ntnu.ihb.fmi4j:fmu-plugin:0.15.1"
}
}
apply plugin: "no.ntnu.ihb.fmi4j.FmuPlugin"