Search Gradle plugins

Version 0.36.2

0.36.2

Created 03 December 2020.

A plugin for exporting FMUs from Java code

Add this plugin to your build using the plugins DSL:

plugins {
  id("no.ntnu.ihb.fmi4j.fmu-export") version "0.36.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("no.ntnu.ihb.fmi4j:fmu-plugin:0.36.2")
      }
    }
    
    apply(plugin = "no.ntnu.ihb.fmi4j.fmu-export")
  • Applying plugins to all subprojects .