Hibernate CGLIB Repackaging.
A repackaging of CGLIB (and its ASM dependencies) under the org.hibernate namespace to avoid version conflicts. The produced artifact is not intended for any use other than to be consumed by hibernate..
Here is the list of declaration for hibernate-cglib-repack. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-cglib-repack</artifactId> <version>2.1_3</version> </dependency>
If you think this Maven repository POM file listing for hibernate-cglib-repack is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on hibernate-cglib-repack-2.1_3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE | jackson-databind 2.2.0 General data-binding functionality for Jackson: works on core streaming API | 56 |
JEE | jackson-databind 2.3.0 General data-binding functionality for Jackson: works on core streaming API | 26 |
JPA Hibernate | hibernate-core 3.3.1.GA The core functionality of Hibernate | 31 |
JEE | jackson-databind 2.3.4 General data-binding functionality for Jackson: works on core streaming API | 8 |
JEE | jackson-databind 2.0.6 General data-binding functionality for Jackson: works on core streaming API | 16 |
JEE | jackson-databind 2.0.2 General data-binding functionality for Jackson: works on core streaming API | 9 |
JEE | jackson-databind 2.4.2 General data-binding functionality for Jackson: works on core streaming API | 17 |
JEE | jackson-databind 2.1.1 General data-binding functionality for Jackson: works on core streaming API | 45 |
JEE | jackson-databind 2.1.4 General data-binding functionality for Jackson: works on core streaming API | 34 |
JEE | jackson-databind 2.2.2 General data-binding functionality for Jackson: works on core streaming API | 90 |
JEE | jackson-databind 2.0.5 General data-binding functionality for Jackson: works on core streaming API | 9 |
JEE | jackson-databind 2.2.1 General data-binding functionality for Jackson: works on core streaming API | 8 |
JEE | jackson-databind 2.4.0-rc2 General data-binding functionality for Jackson: works on core streaming API | 36 |
JEE | jackson-databind 2.1.3 General data-binding functionality for Jackson: works on core streaming API | 25 |
JEE | jackson-databind 2.1.0 General data-binding functionality for Jackson: works on core streaming API | 8 |
JEE | jackson-databind 2.3.1 General data-binding functionality for Jackson: works on core streaming API | 37 |
JEE | jackson-databind 2.4.4 General data-binding functionality for Jackson: works on core streaming API | 22 |
JEE | jackson-databind 2.4.3 General data-binding functionality for Jackson: works on core streaming API | 37 |
JEE | jackson-databind 2.3.2 General data-binding functionality for Jackson: works on core streaming API | 86 |
JEE | jackson-databind 2.0.0 General data-binding functionality for Jackson: works on core streaming API | 5 |
JEE | jackson-databind 2.5.0-rc1 General data-binding functionality for Jackson: works on core streaming API | 13 |
JEE | jackson-databind 2.2.3 General data-binding functionality for Jackson: works on core streaming API | 35 |
JEE | jackson-databind 2.3.3 General data-binding functionality for Jackson: works on core streaming API | 36 |
JEE | jackson-databind 2.1.2 General data-binding functionality for Jackson: works on core streaming API | 60 |
JEE | jackson-databind 2.3.0-rc1 General data-binding functionality for Jackson: works on core streaming API | 18 |
JEE | jackson-databind 2.5.0 General data-binding functionality for Jackson: works on core streaming API | 17 |
JEE | jackson-databind 2.4.1.3 General data-binding functionality for Jackson: works on core streaming API | 64 |
JEE | jackson-databind 2.4.1 General data-binding functionality for Jackson: works on core streaming API | 19 |
The following plugins are used in the hibernate-cglib-repack-2.1_3.jar
The following packages are defined in the hibernate-cglib-repack-2.1_3.jar
org.hibernate.repackage.cglib.asm org.hibernate.repackage.cglib.asm.attrs org.hibernate.repackage.cglib.beans org.hibernate.repackage.cglib.core org.hibernate.repackage.cglib.proxy org.hibernate.repackage.cglib.reflect org.hibernate.repackage.cglib.transform org.hibernate.repackage.cglib.transform.hook org.hibernate.repackage.cglib.transform.impl org.hibernate.repackage.cglib.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.hibernate</groupId> <artifactId>hibernate-cglib-repack</artifactId> <name>Hibernate CGLIB Repackaging</name> <version>2.1_3</version> <description>A repackaging of CGLIB (and its ASM dependencies) under the org.hibernate namespace to avoid version conflicts. The produced artifact is not intended for any use other than to be consumed by hibernate.</description> <url>http://hibernate.org</url> <scm> <connection>scm:svn:https://svn.jboss.org/repos/hibernate/cglib/trunk</connection> <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/cglib/trunk</developerConnection> <url>https://svn.jboss.org/repos/hibernate/cglib/trunk</url> </scm> <organization> <name>Hibernate.org</name> <url>http://hibernate.org</url> </organization> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>cglib:cglib-nodep</include> </includes> </artifactSet> <relocations> <relocation> <pattern>net.sf.cglib</pattern> <shadedPattern>org.hibernate.repackage.cglib</shadedPattern> </relocation> </relocations> <transformers> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.1</version> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Implementation-URL>${pom.url}</Implementation-URL> </manifestEntries> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>repository.jboss.org</id> <url>file://${maven.repository.root}</url> </repository> <snapshotRepository> <id>snapshots.jboss.org</id> <name>JBoss Snapshot Repository</name> <url>dav:https://snapshots.jboss.org/maven2</url> </snapshotRepository> </distributionManagement> </project>