Owner:
Martin Göllnitz
Tangram JPA, JDO, EBean, webapp overlay, and minifying plugin
Version 1.1.3
Created 24 September 2016.
Generic JPA, JDO, EBean byte code transformation plugin, webapp overlay helper, and minifying plugin developed for Tangram - Verson 1.1.2 is again JDK 1.7 compatible
Add this plugin to your build using the plugins DSL:
plugins {
id("tangram.tools") version "1.1.3"
}
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("tangram.tools:tangram.tools.gradle.plugin:1.1.3") }It can then be applied in the precompiled script plugin:plugins { id("tangram.tools") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tangram.tools:tangram.tools.gradle.plugin:1.1.3") } } apply(plugin = "tangram.tools") - Applying plugins to all subprojects .