HHH-5616 - Switch to Gradle for builds .. oscache

This commit is contained in:
Steve Ebersole 2010-10-09 13:58:02 -05:00
parent 8beaccc7eb
commit d19182f32b
5 changed files with 7 additions and 32 deletions

View File

@ -1,32 +0,0 @@
<?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.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-oscache</artifactId>
<packaging>jar</packaging>
<name>Hibernate OSCache Integration</name>
<description>Integration of Hibernate with OSCache</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>oscache</artifactId>
<version>2.1</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,6 @@
apply plugin: 'java'
dependencies {
compile ( project( ':hibernate-core' ) )
compile( [group: 'opensymphony', name: 'oscache', version: '2.1'] )
}

View File

@ -7,6 +7,7 @@ include 'hibernate-proxool'
include 'hibernate-ehcache'
include 'hibernate-infinispan'
include 'hibernate-oscache'
rootProject.children.each { project ->