mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
With this change the stable ProGuard branch remains stable, independent of changes in ProGuardCORE. This avoids the stable branch of ProGuard failing if breaking changes are pushed to ProGuardCORE master branch.
25 lines
536 B
Groovy
25 lines
536 B
Groovy
pluginManagement {
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == 'com.github.johnrengelman.shadow') {
|
|
useVersion '5.2.0'
|
|
}
|
|
if (requested.id.id == 'io.github.gradle-nexus.publish-plugin') {
|
|
useVersion '1.1.0'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'proguard'
|
|
|
|
include 'base'
|
|
include 'proguard-app'
|
|
include 'retrace'
|
|
include 'gui'
|
|
include 'gradle-plugin'
|
|
include 'ant'
|
|
include 'annotations'
|
|
|
|
project(':gradle-plugin').name = 'gradle'
|