组织ID: |
org.hibernate |
项目ID: |
hibernate-ehcache |
版本: |
3.3.0.CR2 |
最后修改时间: |
2019-10-23 03:14:38 |
包类型: |
jar |
标题: |
Hibernate Ehcache Integration |
描述: |
Integration of Hibernate with Ehcache |
大小: |
6.99KB |
|
Maven引入代码: |
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
<version>3.3.0.CR2</version>
</dependency>
|
Gradle引入代码: |
org.hibernate:hibernate-ehcache:3.3.0.CR2
|
下载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.0.CR2</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>
<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>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.hibernate.cache.EhCacheProvider.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所有版本文件
commons-logging-99.0-does-not-exist.jar
/commons-logging/commons-logging/99.0-does-not-exist
查看commons-logging所有版本文件
commons-logging-api-99.0-does-not-exist.jar
/commons-logging/commons-logging-api/99.0-does-not-exist
查看commons-logging-api所有版本文件
jcl104-over-slf4j-1.4.2.jar
/org.slf4j/jcl104-over-slf4j/1.4.2
查看jcl104-over-slf4j所有版本文件
slf4j-log4j12-1.4.2.jar
/org.slf4j/slf4j-log4j12/1.4.2
查看slf4j-log4j12所有版本文件
log4j-1.2.14.jar
/log4j/log4j/1.2.14
查看log4j所有版本文件
javassist-3.4.GA.jar
/javassist/javassist/3.4.GA
查看javassist所有版本文件
cglib-2.1_3.jar
/cglib/cglib/2.1_3
查看cglib所有版本文件
asm-attrs-1.5.3.jar
/asm/asm-attrs/1.5.3
查看asm-attrs所有版本文件
|