2008-04-28 10:53:38 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
~
|
|
|
|
~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
|
|
|
|
~ indicated by the @author tags or express copyright attribution
|
|
|
|
~ statements applied by the authors. All third-party contributions are
|
|
|
|
~ distributed under license by Red Hat Middleware LLC.
|
|
|
|
~
|
|
|
|
~ This copyrighted material is made available to anyone wishing to use, modify,
|
|
|
|
~ copy, or redistribute it subject to the terms and conditions of the GNU
|
|
|
|
~ Lesser General Public License, as published by the Free Software Foundation.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
|
|
|
~ for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU Lesser General Public License
|
|
|
|
~ along with this distribution; if not, write to:
|
|
|
|
~ Free Software Foundation, Inc.
|
|
|
|
~ 51 Franklin Street, Fifth Floor
|
|
|
|
~ Boston, MA 02110-1301 USA
|
|
|
|
~
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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">
|
2008-03-18 10:23:51 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2008-03-18 10:23:51 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-21 20:55:03 -04:00
|
|
|
<artifactId>hibernate-parent</artifactId>
|
2008-04-25 18:00:22 -04:00
|
|
|
<version>3.3.0-SNAPSHOT</version>
|
2008-04-21 20:55:03 -04:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
2008-03-18 10:23:51 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-ehcache</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Hibernate Ehcache Integration</name>
|
|
|
|
<description>Integration of Hibernate with Ehcache</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${groupId}</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>${version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<version>1.2.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- testing deps -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${groupId}</groupId>
|
|
|
|
<artifactId>hibernate-testing</artifactId>
|
|
|
|
<version>${version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.8.0.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>99.0-does-not-exist</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
<version>99.0-does-not-exist</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl104-over-slf4j</artifactId>
|
|
|
|
<version>1.4.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.4.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- these are optional on core... :( -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<version>3.4.GA</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
<version>2.1_3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>asm</groupId>
|
|
|
|
<artifactId>asm-attrs</artifactId>
|
|
|
|
<version>1.5.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|