Files
proguard/docs
Daz DeBoer cb7928d19a Simpify proguard.gradle.ProGuardTask implementation (#151)
* Revert "Improve handling of Gradle task inputs and outputs (#139)"

This reverts commit b5fbefb87c.

* Add more test coverage of Gradle plugin

- Rename `gradlekotlindsl` sample to `gradle-kotlin-dsl`
- Use `gradle-kotlin-dsl` as basis for plugin testing
- Add coverage for loading from external config file

* Register Proguard output files as Gradle task outputs

These outputs file may be consumed by other Gradle tasks, and
this change makes the output file locations available programatically.

We use this internally to publish the generated mapping file to internal
repository, which makes it easier to later deobfuscate stack traces. eg:

publishing {
    publications {
        register("sourcemap", MavenPublication) {
            artifact tasks.named("proguard").map { it.printMappingFile }
        }
    }
}
2021-04-27 17:56:23 +02:00
..
2020-12-08 16:12:07 +01:00