javaetmoi-hibernate4-hydrate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.javaetmoi.core</groupId>
<artifactId>javaetmoi-hibernate4-hydrate</artifactId>
<version>2.2</version>
</dependency><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>com.javaetmoi.core</groupId>
<version>2.2</version>
<artifactId>javaetmoi-hibernate4-hydrate</artifactId>
<name>JavaEtMoi Core :: ${project.artifactId} - ${project.packaging}</name>
<packaging>jar</packaging>
<description>Avoid Hibernate LazyInitializationException by recursively resolving proxy (support Hibernate 4.x)</description>
<inceptionYear>2012</inceptionYear>
<url>https://github.com/arey/hibernate-hydrate</url>
<developers>
<developer>
<id>arey</id>
<name>Antoine Rey</name>
<email>antoine@javaetmoi.com</email>
<url>http://javaetmoi.com</url>
<timezone>+1</timezone>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<id>karlhungus</id>
<name>Izaak Alpert</name>
<email>ialpert+github@gmail.com</email>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<id>mcobery</id>
<name>Marc Cobery</name>
<email>co.bery@gmail.com</email>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<id>markus-s24</id>
<name>Markus Heiden</name>
<email>markus.heiden@s24.com</email>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<!-- Continous Integration build hosted by CloudBees -->
<ciManagement>
<system>jenkins</system>
<url>https://javaetmoi.ci.cloudbees.com/job/Hibernate-Hydrate/</url>
</ciManagement>
<issueManagement>
<system>github</system>
<url>https://github.com/arey/hibernate-hydrate/issues</url>
<!-- BuildHive ready: https://buildhive.cloudbees.com/job/arey/job/hibernate-hydrate/ -->
</issueManagement>
<!-- Apache 2 license -->
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<!-- GitHub Software Configuration Management -->
<scm>
<url>https://github.com/arey/hibernate-hydrate</url>
<connection>scm:git:ssh://git@github.com/arey/hibernate-hydrate.git</connection>
<developerConnection>scm:git:ssh://git@github.com/arey/hibernate-hydrate.git</developerConnection>
<tag>javaetmoi-hibernate4-hydrate-2.2</tag>
</scm>
<properties>
<!-- Version of third libraries -->
<!-- * JPA 2 and Hibernate dependencies -->
<version.hibernate>4.3.5.Final</version.hibernate>
<version.hibernate-javassist>3.18.1-GA</version.hibernate-javassist>
<version.hibernate-jpa-2.1-api>1.0.0.Final</version.hibernate-jpa-2.1-api>
<version.logback>1.1.2</version.logback>
<!-- * For testing purpose -->
<version.junit>4.11</version.junit>
<version.spring>4.0.3.RELEASE</version.spring>
<version.h2>1.4.177</version.h2>
<version.dbunit>2.4.9</version.dbunit>
<version.commons-lang3>3.3.2</version.commons-lang3>
<version.ehcache>2.6.9</version.ehcache>
<version.unitils>3.4.1</version.unitils>
<!-- Version of maven plugins -->
<version.plugin.maven-eclipse-plugin>2.9</version.plugin.maven-eclipse-plugin>
<version.plugin.maven-compiler-plugin>2.3</version.plugin.maven-compiler-plugin>
<version.plugin.maven-resources-plugin>2.4.3</version.plugin.maven-resources-plugin>
<version.plugin.maven-source-plugin>2.1.2</version.plugin.maven-source-plugin>
<version.plugin.maven-javadoc-plugin>2.7</version.plugin.maven-javadoc-plugin>
<version.plugin.maven-release-plugin>2.5</version.plugin.maven-release-plugin>
<version.plugin.nexus-staging-maven-plugin>1.6.2</version.plugin.nexus-staging-maven-plugin>
<version.plugin.maven-gpg-plugin>1.5</version.plugin.maven-gpg-plugin>
<!-- L'encoding des sources -->
<source.encoding>UTF-8</source.encoding>
</properties>
<dependencies>
<!-- JPA -->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>${version.hibernate-jpa-2.1-api}</version>
</dependency>
<!-- Hibernate -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${version.hibernate}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${version.hibernate}</version>
</dependency>
<!-- Javassist -->
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>${version.hibernate-javassist}</version>
</dependency>
<!-- Tests -->
<!-- * JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<!-- * Spring Test and ORM -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${version.spring}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${version.spring}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${version.spring}</version>
<scope>test</scope>
</dependency>
<!-- * Logger -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.logback}</version>
<scope>test</scope>
</dependency>
<!-- * H2 embbeded database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${version.h2}</version>
<scope>test</scope>
</dependency>
<!-- * DBUnit -->
<dependency>
<groupId>org.dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>${version.dbunit}</version>
<scope>test</scope>
</dependency>
<!-- Unitils is useful for reflection assertion -->
<dependency>
<groupId>org.unitils</groupId>
<artifactId>unitils-core</artifactId>
<version>${version.unitils}</version>
<scope>test</scope>
</dependency>
<!-- * Commons Lang for HashCode and Equals builders -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.commons-lang3}</version>
<scope>test</scope>
</dependency>
<!-- EhCache -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>${version.ehcache}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.plugin.maven-compiler-plugin}</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>${source.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.plugin.maven-resources-plugin}</version>
<configuration>
<encoding>${source.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.plugin.maven-source-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${version.plugin.maven-release-plugin}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.plugin.maven-javadoc-plugin}</version>
</plugin>
<!-- Nexus Staging Maven Plugin for Deployment and Release into Sonatype OSSRH -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${version.plugin.nexus-staging-maven-plugin}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<!-- Deploy snapshots to the Sonatype OSSRH (OSS Repository Hosting) -->
<distributionManagement>
<downloadUrl>https://github.com/arey/hybernate-hydrate</downloadUrl>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>eclipse</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>${version.plugin.maven-eclipse-plugin}</version>
<configuration>
<wtpversion>2.0</wtpversion>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<ajdtVersion>none</ajdtVersion>
<useProjectReferences>true</useProjectReferences>
<additionalProjectnatures>
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
<!-- Specific profile for release or artifact deployment -->
<!-- Sources et javadoc are packaged -->
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<!--GPG Signed Artefacts required by Maven Central -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.plugin.maven-gpg-plugin}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>