Browse Source

Upgrade Shadow plugin to version 6.1.0

pull/26385/head
Sam Brannen 4 years ago
parent
commit
b07a6b3283
  1. 1
      build.gradle
  2. 6
      spring-core/spring-core.gradle

1
build.gradle

@ -8,6 +8,7 @@ plugins { @@ -8,6 +8,7 @@ plugins {
id 'de.undercouch.download' version '4.1.1'
id "io.freefair.aspectj" version '5.1.1' apply false
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 "org.jetbrains.kotlin.plugin.serialization" version "1.4.21" apply false
}

6
spring-core/spring-core.gradle

@ -1,15 +1,11 @@ @@ -1,15 +1,11 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id "com.github.johnrengelman.shadow" version "5.2.0"
}
description = "Spring Core"
apply plugin: "kotlin"
// 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.
def cglibVersion = "3.3.0"
def objenesisVersion = "3.1"

Loading…
Cancel
Save