Skip to content

Commit 8d668ac

Browse files
committed
Up-to-date version and link in ASM/CGLIB/Objenesis package javadoc
Issue: SPR-16405 Issue: SPR-15600
1 parent 4f5ae22 commit 8d668ac

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,9 @@ project("spring-build-src") {
289289
project("spring-core") {
290290
description = "Spring Core"
291291

292-
// As of Spring 4.0.3, spring-core includes asm 5.x and repackages cglib 3.2, inlining
293-
// both into the spring-core jar. cglib 3.2 itself depends on asm 5.x and is therefore
294-
// further transformed by the JarJar task to depend on org.springframework.asm; this
295-
// avoids including two different copies of asm unnecessarily.
292+
// spring-core includes asm and repackages cglib, inlining both into the spring-core jar.
293+
// cglib itself depends on asm and is therefore further transformed by the JarJar task to
294+
// depend on org.springframework.asm; this avoids including two different copies of asm.
296295
def cglibVersion = "3.2.6"
297296
def objenesisVersion = "2.6"
298297

spring-core/src/main/java/org/springframework/asm/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Spring's repackaging of
3-
* <a href="http://asm.ow2.org">ASM</a>
4-
* (for internal use only).
3+
* <a href="http://asm.ow2.org">ASM 6.0</a>
4+
* (with Spring-specific patches; for internal use only).
55
*
66
* <p>This repackaging technique avoids any potential conflicts with
77
* dependencies on ASM at the application level or from third-party

spring-core/src/main/java/org/springframework/cglib/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Spring's repackaging of
3-
* <a href="http://cglib.sourceforge.net">CGLIB</a>
4-
* (for internal use only).
3+
* <a href="https://github.com/cglib/cglib">CGLIB 3.2</a>
4+
* (with Spring naming strategy; for internal use only).
55
*
66
* <p>This repackaging technique avoids any potential conflicts with
77
* dependencies on CGLIB at the application level or from third-party

spring-core/src/main/java/org/springframework/objenesis/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Spring's repackaging of
3-
* <a href="http://objenesis.org">Objenesis 2.1</a>
4-
* (for internal use only).
3+
* <a href="http://objenesis.org">Objenesis 2.6</a>
4+
* (with SpringObjenesis entry point; for internal use only).
55
*
66
* <p>This repackaging technique avoids any potential conflicts with
77
* dependencies on different Objenesis versions at the application

0 commit comments

Comments
 (0)