hibernate
Used in: 3 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
Aggregator of the Hibernate Core modules.
Snippets
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.5.4-Final</version> </dependency>
Maven POM File
<?xml version="1.0"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.hibernate</groupId> <artifactId>hibernate-parent</artifactId> <version>3.5.4-Final</version> <relativePath>parent/pom.xml</relativePath> </parent> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <packaging>pom</packaging> <name>Hibernate Core Aggregator</name> <description>Aggregator of the Hibernate Core modules.</description> <modules> <module>parent</module> <module>core</module> <module>testing</module> <module>testsuite</module> <module>cache-ehcache</module> <module>cache-jbosscache</module> <module>cache-oscache</module> <module>cache-swarmcache</module> <module>connection-c3p0</module> <module>connection-proxool</module> <module>annotations</module> <module>envers</module> <module>jmx</module> <module>jdbc3-testing</module> <module>cache-infinispan</module> <!-- <module>tutorials</module> --> <!-- Need to scope bytecode providers first... <module>bytecode-cglib</module> <module>bytecode-javassist</module> --> </modules> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> <!-- <configuration> <stylesheetfile>src/main/javadoc/hibernate-javadoc.css</stylesheetfile> </configuration> --> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>jdk6-modules</id> <activation> <property> <name>disableJDK6Modules</name> <value>!true</value> </property> </activation> <modules> <module>entitymanager</module> <module>jdbc4-testing</module> </modules> </profile> <profile> <id>docs</id> <activation> <property> <name>disableDistribution</name> <value>!true</value> </property> </activation> <modules> <module>documentation</module> <module>distribution</module> </modules> </profile> </profiles> </project>