组织ID: |
org.hibernate |
项目ID: |
hibernate-ehcache |
版本: |
3.3.2.GA |
最后修改时间: |
2018-07-26 09:23:30 |
包类型: |
jar |
标题: |
Hibernate Ehcache Integration |
描述: |
Integration of Hibernate with Ehcache |
大小: |
9.27KB |
|
Maven引入代码: |
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
<version>3.3.2.GA</version>
</dependency>
|
Gradle引入代码: |
org.hibernate:hibernate-ehcache:3.3.2.GA
|
下载Jar包: |
|
POM文件内容: |
<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.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</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>
<!-- these are optional on core... :( -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.hibernate.cache.EhCacheProvider.class
org.hibernate.cache.SingletonEhCacheProvider.class
org.hibernate.cache.EhCache.class
META-INF/maven/org.hibernate/hibernate-ehcache/pom.xml
META-INF/maven/org.hibernate/hibernate-ehcache/pom.properties
|
依赖Jar: |
hibernate-core-${version}.jar
/${groupId}/hibernate-core/${version}
查看hibernate-core所有版本文件
ehcache-1.2.3.jar
/net.sf.ehcache/ehcache/1.2.3
查看ehcache所有版本文件
hibernate-testing-${version}.jar
/${groupId}/hibernate-testing/${version}
查看hibernate-testing所有版本文件
hsqldb-1.8.0.2.jar
/hsqldb/hsqldb/1.8.0.2
查看hsqldb所有版本文件
|