Upgrade Shadow plugin to version 6.1.0

This commit is contained in:
Sam Brannen 2021-01-12 12:25:01 +01:00
parent 6b9d5698ce
commit b07a6b3283
2 changed files with 2 additions and 5 deletions

View File

@ -8,6 +8,7 @@ plugins {
id 'de.undercouch.download' version '4.1.1' id 'de.undercouch.download' version '4.1.1'
id "io.freefair.aspectj" version '5.1.1' apply false id "io.freefair.aspectj" version '5.1.1' apply false
id "com.github.ben-manes.versions" version '0.28.0' id "com.github.ben-manes.versions" version '0.28.0'
id "com.github.johnrengelman.shadow" version "6.1.0" apply false
id "me.champeau.gradle.jmh" version "0.5.2" apply false id "me.champeau.gradle.jmh" version "0.5.2" apply false
id "org.jetbrains.kotlin.plugin.serialization" version "1.4.21" apply false id "org.jetbrains.kotlin.plugin.serialization" version "1.4.21" apply false
} }

View File

@ -1,15 +1,11 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id "com.github.johnrengelman.shadow" version "5.2.0"
}
description = "Spring Core" description = "Spring Core"
apply plugin: "kotlin" apply plugin: "kotlin"
// spring-core includes asm and repackages cglib, inlining both into the spring-core jar. // spring-core includes asm and repackages cglib, inlining both into the spring-core jar.
// cglib itself depends on asm and is therefore further transformed by the JarJar task to // cglib itself depends on asm and is therefore further transformed by the ShadowJar task to
// depend on org.springframework.asm; this avoids including two different copies of asm. // depend on org.springframework.asm; this avoids including two different copies of asm.
def cglibVersion = "3.3.0" def cglibVersion = "3.3.0"
def objenesisVersion = "3.1" def objenesisVersion = "3.1"