tangram.tools
Owner:
Martin Göllnitz
Tangram JPA, JDO, EBean, webapp overlay, and minifying plugin
https://github.com/mgoellnitz/tangram/wiki/Plugin
Sources: https://github.com/mgoellnitz/tangram/
Version 1.2.0 (latest)
Created 04 March 2019.
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.2.0"
}
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.2.0") }
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.2.0") } } apply(plugin = "tangram.tools")
- Applying plugins to all subprojects .