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)
Created 07 February 2019.
Gradle plugin for simplifying programmatic interaction with FMUs
Add this plugin to your build using the plugins DSL:
plugins {
id("no.ntnu.ihb.fmi4j.FmuPlugin") version "0.15.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("no.ntnu.ihb.fmi4j.FmuPlugin:no.ntnu.ihb.fmi4j.FmuPlugin.gradle.plugin:0.15.1") }
It can then be applied in the precompiled script plugin:plugins { id("no.ntnu.ihb.fmi4j.FmuPlugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("no.ntnu.ihb.fmi4j.FmuPlugin:no.ntnu.ihb.fmi4j.FmuPlugin.gradle.plugin:0.15.1") } } apply(plugin = "no.ntnu.ihb.fmi4j.FmuPlugin")
- Applying plugins to all subprojects .