de.fuerstenau.buildconfig
Owner: Malte Fürstenau
Build config plugin for Gradle Java and Groovy projects
https://github.com/mfuerstenau/gradle-buildconfig-plugin
Sources: https://github.com/mfuerstenau/java-buildconfig-plugin
Version 1.0.2
1.0.2
Created 10 August 2015.
Provides per SourceSet BuildConfig static class for gradle Java/Groovy projects
Using the plugins DSL:
plugins {
id("de.fuerstenau.buildconfig") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.0.2")
}
}
apply(plugin = "de.fuerstenau.buildconfig")
Using the plugins DSL:
plugins {
id "de.fuerstenau.buildconfig" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.0.2"
}
}
apply plugin: "de.fuerstenau.buildconfig"