| 组织ID: |
net.sf.ehcache |
| 项目ID: |
ehcache-jcache |
| 版本: |
1.4.0-beta1 |
| 最后修改时间: |
2018-07-27 10:01:45 |
| 包类型: |
jar |
| 标题: |
Ehcache JCache Implementation |
| 描述: |
|
| 大小: |
46.37KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-jcache</artifactId>
<version>1.4.0-beta1</version>
</dependency>
|
| Gradle引入代码: |
net.sf.ehcache:ehcache-jcache:1.4.0-beta1
|
| 下载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>
<groupId>net.sf.ehcache</groupId>
<name>Ehcache JCache Implementation</name>
<artifactId>ehcache-jcache</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-jcache-parent</artifactId>
<version>1.4.0-beta1</version>
</parent>
<description><![CDATA[Ehcache's wrapper implementation of JSR107 - JCACHE.]]> </description>
<dependencies>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
<!--With slf4j, users choose a concrete logging implementation at deploy time-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.6.1</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.8</version>
<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>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>false</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>false</disableXmlReport>
<printSummary>true</printSummary>
<!--<reportFormat>plain</reportFormat>-->
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<systemProperties>
<property>
<name>net.sf.ehcache.skipUpdateCheck</name>
<value>true</value>
</property>
<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>
<!--<repositories>-->
<!--<repository>-->
<!--<id>sourceforge-releases</id>-->
<!--<url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</url>-->
<!--<layout>legacy</layout>-->
<!--<releases>-->
<!--<enabled>false</enabled>-->
<!--<updatePolicy>daily</updatePolicy>-->
<!--</releases>-->
<!--<snapshots>-->
<!--<enabled>true</enabled>-->
<!--<updatePolicy>daily</updatePolicy>-->
<!--</snapshots>-->
<!--</repository>-->
<!--</repositories>-->
<profiles>
<profile>
<!--Only releases need to be signed. Use mvn -Prelease clean deploy to deploy releases -->
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- 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
-->
<repository>
<id>sourceforge-releases</id>
<name>Sourceforge Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sourceforge-snapshots</id>
<name>Sourceforge Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/javax.cache.spi.CachingProvider
net.sf.ehcache.jcache.JCache$1.class
net.sf.ehcache.jcache.JCache$Builder.class
net.sf.ehcache.jcache.JCache$EhcacheIterator.class
net.sf.ehcache.jcache.JCache$JCacheLoaderCallable.class
net.sf.ehcache.jcache.JCache$JCacheLoaderLoadAllCallable.class
net.sf.ehcache.jcache.JCache$ListenerRegistration.class
net.sf.ehcache.jcache.JCache$ScopedListener.class
net.sf.ehcache.jcache.JCache.class
net.sf.ehcache.jcache.JCacheCacheLoaderAdapter.class
net.sf.ehcache.jcache.JCacheCacheWriterAdapter.class
net.sf.ehcache.jcache.JCacheCachingProvider$1.class
net.sf.ehcache.jcache.JCacheCachingProvider.class
net.sf.ehcache.jcache.JCacheConfiguration$1.class
net.sf.ehcache.jcache.JCacheConfiguration$Builder.class
net.sf.ehcache.jcache.JCacheConfiguration.class
net.sf.ehcache.jcache.JCacheCopyOnWriteStrategy$PreferredClassLoaderObjectInputSteam.class
net.sf.ehcache.jcache.JCacheCopyOnWriteStrategy.class
net.sf.ehcache.jcache.JCacheEhcacheDecorator.class
net.sf.ehcache.jcache.JCacheEntry.class
net.sf.ehcache.jcache.JCacheEntryEventAdapter.class
net.sf.ehcache.jcache.JCacheListenerAdapter$1.class
net.sf.ehcache.jcache.JCacheListenerAdapter.class
net.sf.ehcache.jcache.JCacheManager$JCacheBuilder.class
net.sf.ehcache.jcache.JCacheManager.class
net.sf.ehcache.jcache.JCacheStatistics.class
net.sf.ehcache.jcache.JCacheStatusAdapter.class
META-INF/maven/net.sf.ehcache/ehcache-jcache/pom.xml
META-INF/maven/net.sf.ehcache/ehcache-jcache/pom.properties
|
| 依赖Jar: |
ehcache-core-2.5.0.jar
/net.sf.ehcache/ehcache-core/2.5.0
查看ehcache-core所有版本文件
slf4j-api-1.6.1.jar
/org.slf4j/slf4j-api/1.6.1
查看slf4j-api所有版本文件
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
jta-1.1.jar
/javax.transaction/jta/1.1
查看jta所有版本文件
slf4j-jdk14-1.6.1.jar
/org.slf4j/slf4j-jdk14/1.6.1
查看slf4j-jdk14所有版本文件
|