gradle-buildconfig-plugin
gradle-buildconfig-plugin copied to clipboard
A BuildConfig plugin for Gradle java projects
# Feature: 1. Upgrade the gradle version to 7.3.2 for mitigating for log4j vulnerability in Gradle builds 2. Support agp7.0 # How to test - Comment several codes as follows:...
Can not find BuildConfig in a java file. plugins { id 'java' id 'de.fuerstenau.buildconfig' version '1.1.8' } version '0.1' sourceCompatibility = 1.8 repositories { mavenCentral() } test { useTestNG() }...
Build fails when used with Kotlin JS plugin. build.gradle.kts ``` plugins { kotlin("js") version "1.6.21" id("de.fuerstenau.buildconfig") version "1.1.8" } kotlin { js(IR) { browser() } } ``` Exception on the...
While upgraded to gradle 7.0.2 version. I am experiencing a problem that applying ` id "de.fuerstenau.buildconfig" version "1.1.8"` throwing below gradle exception > Caused by: org.gradle.api.GradleException: Configuration not found >...
https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ Is it possible to upload the .jar to a github release, please?
modified class writer string case to write null values without surrounding "" Setting values to null #17
hi! i'm experiencing an issue having build config with eclipse plugin activated. Sourcefolder src/main/java and src/main/test will be duplicate in generated .classpath file. this results in a BuildPathError within eclipse....
https://github.com/mfuerstenau/gradle-buildconfig-plugin#manual-task-wiring ``` task generateBuildConfig (type: de.fuerstenau.buildconfig.GenerateBuildConfigTask) { ... } ``` The above class doesn't resolve and Gradle throws an (unhelpful) error. The problem is the package name is incorrect. It...
https://github.com/mfuerstenau/gradle-buildconfig-plugin/issues/14
Pretty printing build info #25