组织ID: |
net.sf.ehcache |
项目ID: |
ehcache |
版本: |
1.6.0-snapshot |
最后修改时间: |
2019-02-24 22:35:55 |
包类型: |
jar |
标题: |
Ehcache Core |
大小: |
203.98KB |
|
Maven引入代码: |
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>1.6.0-snapshot</version>
</dependency>
|
Gradle引入代码: |
net.sf.ehcache:ehcache:1.6.0-snapshot
|
下载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 Core</name>
<artifactId>ehcache</artifactId>
<packaging>jar</packaging>
<version>1.6.0-snapshot</version>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.8</version>
</dependency>
<!-- Provided scope -->
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<scope>provided</scope>
<version>3.2.6.ga</version>
</dependency>
<dependency>
<groupId>net.sf.hibernate</groupId>
<artifactId>hibernate</artifactId>
<scope>test</scope>
</dependency>
<!-- Test scope -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.5.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>httpunit</groupId>
<artifactId>httpunit</artifactId>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId>
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle-optional</artifactId>
</dependency>
<dependency>
<groupId>com.cenqua.clover</groupId>
<artifactId>clover</artifactId>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>${basedir}/src/main/config/jcache</directory>
</testResource>
<testResource>
<directory>${basedir}/src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
<executions>
<execution>
<id>compile_for_javadoc</id>
<phase>pre-site</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3</version>
<configuration>
<doclet>ydoc.doclets.YStandard</doclet>
<docletPath>
${ydoc.home}/lib/ydoc.jar${path.separator}${ydoc.home}/lib/class2svg.jar${path.separator}${ydoc.home}/resources
</docletPath>
<additionalparam>-license ${ydoc.license} -filter ydoc.filters.ExcludeFilter -filterpath
${ydoc.home}/lib/ydoc.jar -umlautogen
</additionalparam>
<author>true</author>
<bottom>true</bottom>
<!--<destDir>${project.build.directory}/site/javadoc</destDir>-->
<header><![CDATA[<a href="/" target="_top">ehcache</a>]]></header>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<overview>${basedir}/src/main/java/net/sf/ehcache/overview.html</overview>
<use>true</use>
<version>true</version>
<windowtitle>${project.name} ${project.version} API</windowtitle>
</configuration>
<executions>
<execution>
<id>generate-javadoc</id>
<phase>pre-site</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>rmic</id>
<phase>compile</phase>
<configuration>
<tasks>
<rmic base="${project.build.outputDirectory}"
includes="**/RMICachePeer.class"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>singlepageguide</id>
<phase>pre-site</phase>
<configuration>
<tasks>
<ant target="singlepageguide"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>unhide_embedded_html</id>
<phase>site</phase>
<configuration>
<tasks>
<ant target="unhide_html"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.3</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<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>
<debugForkedProcess>true</debugForkedProcess>
<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>
<executions>
<execution>
<id>integration-tests</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<includes>
<include>**/web/**/*Test.java</include>
</includes>
<excludes>
<exclude>**/*$*</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>
${pom.artifactId}
</Bundle-SymbolicName>
<Export-Package>
*;version=${pom.version}
</Export-Package>
<Import-Package>
net.sf.hibernate.cache;resolution:=optional,*;-split-package:=merge-first
</Import-Package>
</instructions>
<classifier>osgi</classifier>
</configuration>
<executions>
<execution>
<id>bundle</id>
<phase>verify</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<phase>validate</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>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<enableRulesSummary>true</enableRulesSummary>
</configuration>
</plugin>
<!-- Use this to specify a different template. It also needs a local copy of maven-base.css -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<templateFile>${basedir}/src/site/default-site-ehcache.vm</templateFile>
</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>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
<!--<executions>-->
<!--<execution>-->
<!--<id>assemble</id>-->
<!--<phase>verify</phase>-->
<!--<goals>-->
<!--<goal>assembly</goal>-->
<!--</goals>-->
<!--</execution>-->
<!--</executions>-->
</plugin>
</plugins>
</build>
<!-- Reports -->
<reporting>
<plugins>
<!--Reports -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>project-team</report>
<report>mailing-list</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!--PMD and CPD -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<rulesets>
<ruleset>/rulesets/basic.xml</ruleset>
</rulesets>
<format>xml</format>
<targetJdk>1.5</targetJdk>
<linkXRef>true</linkXRef>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
</configuration>
</plugin>
<!--Manual Changelist -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changes-maven-plugin</artifactId>
<configuration>
<link_template>
%URL%/index.php?func=detail&group_id=93232&atid=603559&aid=%ISSUE%
</link_template>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!--ToDos -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.0-beta-1</version>
<configuration>
<tags>todo, TODO, @todo</tags>
</configuration>
</plugin>
<!--Java Cross Reference (JXR) -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}/site</outputDirectory>
<docTitle>ehcache</docTitle>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>sourceforge-releases</id>
<name>Sourceforge Release Repository</name>
<url>http://oss.sonatype.org/content/repositories/sourceforge-releases</url>
</repository>
<snapshotRepository>
<id>sourceforge-snapshots</id>
<name>Sourceforge Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</url>
</snapshotRepository>
<!--
The server id here defined must also appear in ~/.m2/settings.xml with username
Note: site URL repeated here to ensure correct deployment path -->
<site>
<id>sourceforge.net</id>
<name>SF EHCache Site</name>
<url>scp://web.sourceforge.net:/home/groups/e/eh/ehcache/htdocs</url>
</site>
</distributionManagement>
<properties>
<net.sf.ehcache.speedAdjustmentFactor>1</net.sf.ehcache.speedAdjustmentFactor>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
ehcache-failsafe.xml
net.sf.ehcache.bootstrap.BootstrapCacheLoader.class
net.sf.ehcache.bootstrap.BootstrapCacheLoaderFactory.class
net.sf.ehcache.Cache$1.class
net.sf.ehcache.Cache$2.class
net.sf.ehcache.Cache.class
net.sf.ehcache.CacheException.class
net.sf.ehcache.CacheManager$1.class
net.sf.ehcache.CacheManager.class
net.sf.ehcache.concurrent.ConcurrencyUtil.class
net.sf.ehcache.concurrent.Mutex.class
net.sf.ehcache.concurrent.StripedMutex.class
net.sf.ehcache.concurrent.Sync.class
net.sf.ehcache.config.BeanHandler$ElementInfo.class
net.sf.ehcache.config.BeanHandler.class
net.sf.ehcache.config.CacheConfiguration$BootstrapCacheLoaderFactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration$CacheEventListenerFactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration$CacheExceptionHandlerFactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration$CacheExtensionFactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration$CacheLoaderFactoryConfiguration.class
net.sf.ehcache.config.CacheConfiguration.class
net.sf.ehcache.config.Configuration.class
net.sf.ehcache.config.ConfigurationFactory.class
net.sf.ehcache.config.ConfigurationHelper.class
net.sf.ehcache.config.DiskStoreConfiguration$Env.class
net.sf.ehcache.config.DiskStoreConfiguration.class
net.sf.ehcache.config.FactoryConfiguration.class
net.sf.ehcache.constructs.asynchronous.AsynchronousCommandException.class
net.sf.ehcache.constructs.asynchronous.AsynchronousCommandExecutor$1.class
net.sf.ehcache.constructs.asynchronous.AsynchronousCommandExecutor$DispatcherThread.class
net.sf.ehcache.constructs.asynchronous.AsynchronousCommandExecutor$InstrumentedCommand.class
net.sf.ehcache.constructs.asynchronous.AsynchronousCommandExecutor.class
net.sf.ehcache.constructs.asynchronous.Command.class
net.sf.ehcache.constructs.asynchronous.CommandNotFoundInCacheException.class
net.sf.ehcache.constructs.asynchronous.RetryAttemptTooSoonException.class
net.sf.ehcache.constructs.asynchronous.TooManyRetriesException.class
net.sf.ehcache.constructs.blocking.BlockingCache.class
net.sf.ehcache.constructs.blocking.CacheEntryFactory.class
net.sf.ehcache.constructs.blocking.LockTimeoutException.class
net.sf.ehcache.constructs.blocking.SelfPopulatingCache.class
net.sf.ehcache.constructs.blocking.UpdatingCacheEntryFactory.class
net.sf.ehcache.constructs.blocking.UpdatingSelfPopulatingCache.class
net.sf.ehcache.distribution.CacheManagerPeerListener.class
net.sf.ehcache.distribution.CacheManagerPeerListenerFactory.class
net.sf.ehcache.distribution.CacheManagerPeerProvider.class
net.sf.ehcache.distribution.CacheManagerPeerProviderFactory.class
net.sf.ehcache.distribution.CachePeer.class
net.sf.ehcache.distribution.CacheReplicator.class
net.sf.ehcache.distribution.ConfigurableRMIClientSocketFactory.class
net.sf.ehcache.distribution.EventMessage.class
net.sf.ehcache.distribution.ManualRMICacheManagerPeerProvider.class
net.sf.ehcache.distribution.MulticastKeepaliveHeartbeatReceiver$MulticastReceiverThread$1.class
net.sf.ehcache.distribution.MulticastKeepaliveHeartbeatReceiver$MulticastReceiverThread.class
net.sf.ehcache.distribution.MulticastKeepaliveHeartbeatReceiver.class
net.sf.ehcache.distribution.MulticastKeepaliveHeartbeatSender$MulticastServerThread.class
net.sf.ehcache.distribution.MulticastKeepaliveHeartbeatSender.class
net.sf.ehcache.distribution.MulticastRMICacheManagerPeerProvider$CachePeerEntry.class
net.sf.ehcache.distribution.MulticastRMICacheManagerPeerProvider.class
net.sf.ehcache.distribution.PayloadUtil.class
net.sf.ehcache.distribution.RemoteCacheException.class
net.sf.ehcache.distribution.RMIAsynchronousCacheReplicator$CacheEventMessage.class
net.sf.ehcache.distribution.RMIAsynchronousCacheReplicator$ReplicationThread.class
net.sf.ehcache.distribution.RMIAsynchronousCacheReplicator.class
net.sf.ehcache.distribution.RMIBootstrapCacheLoader$BootstrapThread.class
net.sf.ehcache.distribution.RMIBootstrapCacheLoader.class
net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory.class
net.sf.ehcache.distribution.RMICacheManagerPeerListener.class
net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory.class
net.sf.ehcache.distribution.RMICacheManagerPeerProvider.class
net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory.class
net.sf.ehcache.distribution.RMICachePeer.class
net.sf.ehcache.distribution.RMICachePeer_Stub.class
net.sf.ehcache.distribution.RMICacheReplicatorFactory.class
net.sf.ehcache.distribution.RMISynchronousCacheReplicator.class
net.sf.ehcache.Ehcache.class
net.sf.ehcache.Element.class
net.sf.ehcache.event.CacheEventListener.class
net.sf.ehcache.event.CacheEventListenerFactory.class
net.sf.ehcache.event.CacheManagerEventListener.class
net.sf.ehcache.event.CacheManagerEventListenerFactory.class
net.sf.ehcache.event.CacheManagerEventListenerRegistry.class
net.sf.ehcache.event.RegisteredEventListeners.class
net.sf.ehcache.exceptionhandler.CacheExceptionHandler.class
net.sf.ehcache.exceptionhandler.CacheExceptionHandlerFactory.class
net.sf.ehcache.exceptionhandler.ExceptionHandlingDynamicCacheProxy.class
net.sf.ehcache.extension.CacheExtension.class
net.sf.ehcache.extension.CacheExtensionFactory.class
net.sf.ehcache.hibernate.EhCache.class
net.sf.ehcache.hibernate.EhCacheProvider.class
net.sf.ehcache.hibernate.SingletonEhCacheProvider.class
net.sf.ehcache.loader.CacheLoader.class
net.sf.ehcache.loader.CacheLoaderFactory.class
net.sf.ehcache.management.Cache.class
net.sf.ehcache.management.CacheConfiguration.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
slf4j-api-1.5.8.jar
/org.slf4j/slf4j-api/1.5.8
查看slf4j-api所有版本文件
hibernate-3.2.6.ga.jar
/org.hibernate/hibernate/3.2.6.ga
查看hibernate所有版本文件
slf4j-jdk14-1.5.6.jar
/org.slf4j/slf4j-jdk14/1.5.6
查看slf4j-jdk14所有版本文件
junit-4.4.jar
/junit/junit/4.4
查看junit所有版本文件
|