Maven Repository - POM file for JPA Hibernate hibernate-cglib-repack 2.1_3 2.1_3

Summary

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..

Declaration

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.





Depended by

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.

CategoryArtifactDepended By Count
JEEjackson-databind 2.2.0
General data-binding functionality for Jackson: works on core streaming API
56
JEEjackson-databind 2.3.0
General data-binding functionality for Jackson: works on core streaming API
26
JPA Hibernatehibernate-core 3.3.1.GA
The core functionality of Hibernate
31
JEEjackson-databind 2.3.4
General data-binding functionality for Jackson: works on core streaming API
8
JEEjackson-databind 2.0.6
General data-binding functionality for Jackson: works on core streaming API
16
JEEjackson-databind 2.0.2
General data-binding functionality for Jackson: works on core streaming API
9
JEEjackson-databind 2.4.2
General data-binding functionality for Jackson: works on core streaming API
17
JEEjackson-databind 2.1.1
General data-binding functionality for Jackson: works on core streaming API
45
JEEjackson-databind 2.1.4
General data-binding functionality for Jackson: works on core streaming API
34
JEEjackson-databind 2.2.2
General data-binding functionality for Jackson: works on core streaming API
90
JEEjackson-databind 2.0.5
General data-binding functionality for Jackson: works on core streaming API
9
JEEjackson-databind 2.2.1
General data-binding functionality for Jackson: works on core streaming API
8
JEEjackson-databind 2.4.0-rc2
General data-binding functionality for Jackson: works on core streaming API
36
JEEjackson-databind 2.1.3
General data-binding functionality for Jackson: works on core streaming API
25
JEEjackson-databind 2.1.0
General data-binding functionality for Jackson: works on core streaming API
8
JEEjackson-databind 2.3.1
General data-binding functionality for Jackson: works on core streaming API
37
JEEjackson-databind 2.4.4
General data-binding functionality for Jackson: works on core streaming API
22
JEEjackson-databind 2.4.3
General data-binding functionality for Jackson: works on core streaming API
37
JEEjackson-databind 2.3.2
General data-binding functionality for Jackson: works on core streaming API
86
JEEjackson-databind 2.0.0
General data-binding functionality for Jackson: works on core streaming API
5
JEEjackson-databind 2.5.0-rc1
General data-binding functionality for Jackson: works on core streaming API
13
JEEjackson-databind 2.2.3
General data-binding functionality for Jackson: works on core streaming API
35
JEEjackson-databind 2.3.3
General data-binding functionality for Jackson: works on core streaming API
36
JEEjackson-databind 2.1.2
General data-binding functionality for Jackson: works on core streaming API
60
JEEjackson-databind 2.3.0-rc1
General data-binding functionality for Jackson: works on core streaming API
18
JEEjackson-databind 2.5.0
General data-binding functionality for Jackson: works on core streaming API
17
JEEjackson-databind 2.4.1.3
General data-binding functionality for Jackson: works on core streaming API
64
JEEjackson-databind 2.4.1
General data-binding functionality for Jackson: works on core streaming API
19




Plugin

The following plugins are used in the hibernate-cglib-repack-2.1_3.jar

  1. maven-compiler-plugin
  2. maven-jar-plugin
  3. maven-shade-plugin

Packages

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




POM File Source

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>