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
Using the plugins DSL:
plugins {
id("tangram.tools") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.tangram:tangram-buildSrc:1.2.0")
}
}
apply(plugin = "tangram.tools")
Using the plugins DSL:
plugins {
id "tangram.tools" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.tangram:tangram-buildSrc:1.2.0"
}
}
apply plugin: "tangram.tools"