| 组织ID: |
net.sf.ehcache |
| 项目ID: |
ehcache-jcache |
| 版本: |
1.1 |
| 最后修改时间: |
2019-10-23 12:25:26 |
| 包类型: |
jar |
| 标题: |
Ehcache JCache Reference Implementation |
| 描述: |
|
| 大小: |
15.97KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-jcache</artifactId>
<version>1.1</version>
</dependency>
|
| Gradle引入代码: |
net.sf.ehcache:ehcache-jcache:1.1
|
| 下载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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-parent</artifactId>
<version>1.5.0</version>
</parent>
<name>Ehcache JCache Reference Implementation</name>
<artifactId>ehcache-jcache</artifactId>
<packaging>jar</packaging>
<version>1.1</version>
<description><![CDATA[The RI for JSR107 - JCACHE.]]> </description>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>ehcache</artifactId>
<version>1.6.0-beta3</version>
</dependency>
<dependency>
<groupId>net.sf.jsr107cache</groupId>
<artifactId>jsr107cache</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<!-- Doesn't work when not internet connected -->
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>${basedir}/checkstyle/checkstyle.xml</configLocation>
<suppressionsLocation>${basedir}/checkstyle/suppressions.xml</suppressionsLocation>
<headerLocation>${basedir}/checkstyle/ClassHeader.txt</headerLocation>
<enableRSS>false</enableRSS>
<linkXRef>true</linkXRef>
<enableRulesSummary>false</enableRulesSummary>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<enableRulesSummary>true</enableRulesSummary>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<skip>false</skip>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/*$*</exclude>
<exclude>**/web/**/*</exclude>
<exclude>**/Abstract*Test.java</exclude>
<exclude>**/constructs/web/**</exclude>
</excludes>
<forkMode>pertest</forkMode>
<childDelegation>false</childDelegation>
<disableXmlReport>true</disableXmlReport>
<printSummary>true</printSummary>
<!--<reportFormat>plain</reportFormat>-->
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<systemProperties>
<property>
<name>java.awt.headless</name>
<value>true</value>
</property>
<property>
<name>
net.sf.ehcache.speedAdjustmentFactor
</name>
<value>
${net.sf.ehcache.speedAdjustmentFactor}
</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<filters>
<filter>src/assemble/filter.properties</filter>
</filters>
<descriptors>
<descriptor>src/assemble/distribution.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<!-- Note: site URL repeated here to ensure correct deployment path -->
<distributionManagement>
<!--
The server id here defined must also appear in ~/.m2/settings.xml with username
-->
<snapshotRepository>
<id>sourceforge.net</id>
<name>SF EHCache Snapshot Repository</name>
<url>scp://gregluck,ehcache@web.sourceforge.net:/home/groups/e/eh/ehcache/htdocs/snapshotrepository</url>
</snapshotRepository>
<repository>
<id>sourceforge.net</id>
<name>SF EHCache Repository</name>
<url>scp://gregluck,ehcache@web.sourceforge.net:/home/groups/e/eh/ehcache/htdocs/repository</url>
</repository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/javax.cache.CacheFactory
META-INF/services/net.sf.jsr107cache.CacheFactory
net.sf.ehcache.jcache.JCache.class
net.sf.ehcache.jcache.JCacheEntry.class
net.sf.ehcache.jcache.JCacheFactory.class
net.sf.ehcache.jcache.JCacheListenerAdaptor.class
net.sf.ehcache.jcache.JCacheManager.class
net.sf.ehcache.jcache.JCacheStatistics.class
net.sf.ehcache.jcache.loader.JCacheLoader.class
net.sf.ehcache.jcache.loader.JCacheLoaderFactory.class
META-INF/maven/net.sf.ehcache/ehcache-jcache/pom.xml
META-INF/maven/net.sf.ehcache/ehcache-jcache/pom.properties
|
| 依赖Jar: |
ehcache-1.6.0-beta3.jar
/${pom.groupId}/ehcache/1.6.0-beta3
查看ehcache所有版本文件
jsr107cache-1.1.jar
/net.sf.jsr107cache/jsr107cache/1.1
查看jsr107cache所有版本文件
junit-4.1.jar
/junit/junit/4.1
查看junit所有版本文件
|