51 lines
1.7 KiB
XML
51 lines
1.7 KiB
XML
<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-core-parent</artifactId>
|
|
<version>1</version>
|
|
</parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-jbosscache2</artifactId>
|
|
<version>3.3.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Hibernate JBossCache2.x Integration</name>
|
|
<description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${groupId}</groupId>
|
|
<artifactId>hibernate-core</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jboss</groupId>
|
|
<artifactId>jboss-cache</artifactId>
|
|
<!-- I'd prefer this, at least until we get a GA...
|
|
<version>[2.0.0.BETA2,)</version>
|
|
-->
|
|
<version>2.0.0.BETA2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|