Up-to-date version and link in ASM/CGLIB/Objenesis package javadoc

Issue: SPR-17267
Issue: SPR-17372
This commit is contained in:
Juergen Hoeller
2018-11-08 16:56:48 +01:00
parent 362c59c310
commit e26ae9853e
4 changed files with 9 additions and 10 deletions

View File

@@ -7,10 +7,9 @@ dependencyManagement {
}
}
// As of Spring 5.1, spring-core includes asm 7.0 and repackages cglib 3.2.9, inlining
// both into the spring-core jar. cglib 3.2.9 itself depends on asm 7 and is therefore
// further transformed by the JarJar task to depend on org.springframework.asm; this
// avoids including two different copies of asm unnecessarily.
// 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
// depend on org.springframework.asm; this avoids including two different copies of asm.
def cglibVersion = "3.2.9"
def objenesisVersion = "3.0.1"

View File

@@ -1,7 +1,7 @@
/**
* Spring's repackaging of
* <a href="https://gitlab.ow2.org/asm/asm">ASM</a>
* (for internal use only).
* <a href="https://gitlab.ow2.org/asm/asm">ASM 7.0</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on ASM at the application level or from third-party

View File

@@ -1,7 +1,7 @@
/**
* Spring's repackaging of
* <a href="http://cglib.sourceforge.net">CGLIB</a>
* (for internal use only).
* <a href="https://github.com/cglib/cglib">CGLIB 3.2</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on CGLIB at the application level or from third-party

View File

@@ -1,7 +1,7 @@
/**
* Spring's repackaging of
* <a href="http://objenesis.org">Objenesis 2.1</a>
* (for internal use only).
* <a href="http://objenesis.org">Objenesis 3.0</a>
* (with SpringObjenesis entry point; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on different Objenesis versions at the application