组织ID: |
net.sf.ehcache |
项目ID: |
ehcache-terracotta |
版本: |
2.1.0 |
最后修改时间: |
2018-08-08 10:24:12 |
包类型: |
jar |
标题: |
ehcache-terracotta |
大小: |
11.07MB |
|
Maven引入代码: |
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-terracotta</artifactId>
<version>2.1.0</version>
</dependency>
|
Gradle引入代码: |
net.sf.ehcache:ehcache-terracotta:2.1.0
|
下载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-terracotta-root</artifactId>
<version>2.1.0</version>
</parent>
<artifactId>ehcache-terracotta</artifactId>
<name>ehcache-terracotta</name>
<packaging>jar</packaging>
<properties>
<express-jar.artifactId>ehcache-terracotta</express-jar.artifactId>
<express-jar.groupId>${project.groupId}</express-jar.groupId>
<express-jar.version>${project.version}</express-jar.version>
<exported-classes-jar>${project.build.directory}/exported-classes.jar</exported-classes-jar>
<public-api-classes-jar>${project.build.directory}/public-api-classes.jar</public-api-classes-jar>
<terracotta-l1.artifactId>terracotta-l1</terracotta-l1.artifactId>
<enterprise.packaging>open source</enterprise.packaging>
<sourceforge-snapshots.url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</sourceforge-snapshots.url>
<sourceforge-releases.url>http://oss.sonatype.org/service/local/staging/deploy/maven2</sourceforge-releases.url>
<skipJavadoc>false</skipJavadoc>
</properties>
<dependencies>
<!-- bootstrap code -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-terracotta-bootstrap</artifactId>
<version>2.1.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.terracotta.api</groupId>
<artifactId>terracotta-api</artifactId>
<version>${terracotta-api.version}</version>
<optional>true</optional>
</dependency>
<!-- Stuff that goes into L1 -->
<dependency>
<groupId>org.terracotta</groupId>
<artifactId>${terracotta-l1.artifactId}</artifactId>
<version>${terracotta.version}</version>
<optional>true</optional>
</dependency>
<!-- stuff that goes into TIMs -->
<dependency>
<groupId>org.terracotta.modules</groupId>
<artifactId>excludes-config</artifactId>
<version>${terracotta.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.terracotta.modules</groupId>
<artifactId>guimodels-config</artifactId>
<version>${terracotta.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.terracotta.modules</groupId>
<artifactId>jdk15-preinst-config</artifactId>
<version>${terracotta.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.terracotta.modules</groupId>
<artifactId>standard-config</artifactId>
<version>${terracotta.version}</version>
<optional>true</optional>
</dependency>
<!-- TIMs that we bundle in the standalone package -->
<dependency>
<groupId>org.terracotta.modules</groupId>
<artifactId>tim-ehcache-2.0</artifactId>
<version>${tim-ehcache-2.0.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includeGroupIds>org.terracotta.modules</includeGroupIds>
<classifier>sources</classifier>
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
<outputDirectory>${project.build.directory}/sources</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<skip>${skipJavadoc}</skip>
<quiet>true</quiet>
<sourcepath>${project.build.directory}/sources</sourcepath>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.terracotta.maven.plugins</groupId>
<artifactId>tc-maven-plugin</artifactId>
<version>${tc-maven-plugin.version}</version>
<configuration>
<bootJar>${project.build.directory}/dso-boot/dso-boot.jar</bootJar>
<overwriteBootjar>true</overwriteBootjar>
</configuration>
<executions>
<execution>
<id>create-bootjar</id>
<phase>package</phase>
<goals>
<goal>bootjar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.terracotta.maven.plugins</groupId>
<artifactId>tc-build-maven-plugin</artifactId>
<version>${tc-build-plugin.version}</version>
<executions>
<execution>
<id>build exported classes</id>
<phase>package</phase>
<configuration>
<jarLocation>${exported-classes-jar}</jarLocation>
</configuration>
<goals>
<goal>generate-exported-classes-jar</goal>
</goals>
</execution>
<execution>
<id>build public api classes</id>
<phase>package</phase>
<configuration>
<jarLocation>${public-api-classes-jar}</jarLocation>
</configuration>
<goals>
<goal>generate-public-api-classes-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<configuration>
<tasks>
<unzip src="${project.build.directory}/dso-boot/dso-boot.jar"
dest="${project.build.directory}/dso-boot/unpacked">
<patternset>
<include name="com/tc/**" />
<include name="com/tcclient/**" />
<!--
XXX: We can remove this if we ever stop using
TLinkable in com.tc.object.cache.Cacheable
-->
<include name="gnu/**" />
</patternset>
</unzip>
<unzip src="${project.build.directory}/dso-boot/dso-boot.jar"
dest="${project.build.directory}/public-api-classes/unpacked">
<patternset>
<include name="com/tc/cluster/**" />
<include name="com/tcclient/cluster/DsoNode.class" />
</patternset>
</unzip>
<zip destfile="${project.build.directory}/dso-boot/dso-boot.jar"
basedir="${project.build.directory}/dso-boot/unpacked"
update="false">
</zip>
<!-- the public api classes need to live in the express jar itself to be available to the application's classpath -->
<unzip src="${public-api-classes-jar}"
dest="${project.build.directory}/public-api-classes/unpacked">
</unzip>
<zip destfile="${public-api-classes-jar}"
basedir="${project.build.directory}/public-api-classes/unpacked"
update="false">
</zip>
<unzip src="${public-api-classes-jar}"
dest="${project.build.directory}/classes">
</unzip>
</tasks>
</configuration>
<executions>
<execution>
<id>unjar-classes</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<finalName>${express-jar.artifactId}-${express-jar.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<attach>true</attach>
<descriptors>
<descriptor>${basedir}/src/main/assembly/bin.xml</descriptor>
</descriptors>
<archive>
<manifestEntries>
<Terracotta-Category>Product</Terracotta-Category>
<Terracotta-ArtifactCoordinates>${express-jar.groupId}:${express-jar.artifactId}:${express-jar.version}</Terracotta-ArtifactCoordinates>
<Terracotta-RequireVersion>${terracotta.version}</Terracotta-RequireVersion>
<Terracotta-Require></Terracotta-Require>
<Terracotta-ProjectStatus>Supported</Terracotta-ProjectStatus>
<Terracotta-InternalTIM>false</Terracotta-InternalTIM>
<Terracotta-DownloadPath>../../ehcache</Terracotta-DownloadPath>
<Terracotta-Name>${express-jar.artifactId}</Terracotta-Name>
<Terracotta-Description>${project.description}</Terracotta-Description>
<Terracotta-Kit>${enterprise.packaging}</Terracotta-Kit>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>package-ee</id>
<properties>
<express-jar.artifactId>ehcache-terracotta-ee</express-jar.artifactId>
<terracotta-l1.artifactId>terracotta-l1-ee</terracotta-l1.artifactId>
<enterprise.packaging>enterprise</enterprise.packaging>
</properties>
</profile>
<profile>
<id>deploy-terracotta-snapshots</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>deploy-terracotta-snapshots</id>
<configuration>
<file>${project.build.directory}/${express-jar.artifactId}-${express-jar.version}.jar</file>
<repositoryId>terracotta-snapshots</repositoryId>
<url>${terracotta-snapshots-url}</url>
<packaging>jar</packaging>
<groupId>${express-jar.groupId}</groupId>
<artifactId>${express-jar.artifactId}</artifactId>
<version>${express-jar.version}</version>
<uniqueVersion>false</uniqueVersion>
</configuration>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-terracotta-staging</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>deploy-terracotta-staging</id>
<configuration>
<file>${project.build.directory}/${express-jar.artifactId}-${express-jar.version}.jar</file>
<repositoryId>terracotta-staging</repositoryId>
<url>${terracotta-staging-url}</url>
<packaging>jar</packaging>
<groupId>${express-jar.groupId}</groupId>
<artifactId>${express-jar.artifactId}</artifactId>
<version>${express-jar.version}</version>
<uniqueVersion>false</uniqueVersion>
</configuration>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-terracotta-releases</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>deploy-terracotta-releases</id>
<configuration>
<file>${project.build.directory}/${express-jar.artifactId}-${express-jar.version}.jar</file>
<repositoryId>terracotta-releases</repositoryId>
<url>${terracotta-releases-url}</url>
<packaging>jar</packaging>
<groupId>${express-jar.groupId}</groupId>
<artifactId>${express-jar.artifactId}</artifactId>
<version>${express-jar.version}</version>
<uniqueVersion>false</uniqueVersion>
</configuration>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-sourceforge-snapshots</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>deploy-sourceforge-snapshots</id>
<configuration>
<file>${project.build.directory}/${express-jar.artifactId}-${express-jar.version}.jar</file>
<repositoryId>sourceforge-snapshots</repositoryId>
<url>${sourceforge-snapshots.url}</url>
<packaging>jar</packaging>
<groupId>${express-jar.groupId}</groupId>
<artifactId>${express-jar.artifactId}</artifactId>
<version>${express-jar.version}</version>
<uniqueVersion>false</uniqueVersion>
</configuration>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-sourceforge-releases</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>deploy-sourceforge-releases</id>
<configuration>
<keyname>Terracotta Release Engineer</keyname>
<file>${project.build.directory}/${express-jar.artifactId}-${express-jar.version}.jar</file>
<repositoryId>sourceforge-releases</repositoryId>
<url>${sourceforge-releases.url}</url>
<packaging>jar</packaging>
<pomFile>src/deploy/ehcache-terracotta.pom</pomFile>
<groupId>${express-jar.groupId}</groupId>
<artifactId>${express-jar.artifactId}</artifactId>
<version>${express-jar.version}</version>
<uniqueVersion>false</uniqueVersion>
</configuration>
<phase>deploy</phase>
<goals>
<goal>sign-and-deploy-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>terracotta-repository</id>
<url>http://www.terracotta.org/download/reflector/releases</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>terracotta-repository</id>
<url>http://www.terracotta.org/download/reflector/releases</url>
</pluginRepository>
</pluginRepositories>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.tc.cluster.DsoCluster.class
com.tc.cluster.exceptions.UnclusteredObjectException.class
com.tc.cluster.DsoClusterTopology.class
com.tc.cluster.DsoClusterListener.class
com.tc.cluster.DsoClusterEvent.class
com.tcclient.cluster.DsoNode.class
org.terracotta.modules.async.ScatterPolicy.class
org.terracotta.modules.async.ItemProcessor.class
org.terracotta.modules.async.AsyncConfig.class
org.terracotta.modules.async.QuarantinedItemsFilter.class
org.terracotta.modules.async.ProcessingBucketListener.class
org.terracotta.modules.async.StealPolicy.class
org.terracotta.modules.async.AsyncErrorHandler.class
thirdpartylicenses.txt
license.txt
dso-boot.jar
exported-classes.jar
L1/terracotta-api-1.2.1.jar
L1/terracotta-l1-3.2.1.jar
L1/tcconfig-3.2.1.jar
L1/tc-l1-reconnect-properties-3.2.1.jar
L1/tcstats-3.2.1.jar
L1/yamlbeans-0.9.2.jar
L1/log4j-1.2.9.jar
L1/commons-logging-1.0.3.jar
L1/commons-collections-3.2.1.jar
L1/commons-lang-2.0.jar
L1/commons-cli-1.1.jar
L1/commons-io-1.2.jar
L1/commons-httpclient-3.1.jar
L1/commons-codec-1.2.jar
L1/jmxremote-1.0.1_04.jar
L1/jmxremote_optional-1.0.1_04.jar
L1/bsh-2.0b4.jar
L1/xmlbeans-2.4.0.jar
L1/xmlbeans-xpath-2.4.0.jar
L1/xmlbeans-jsr173-api-1.0.jar
L1/knopflerfish-tc-2.0.1.jar
L1/concurrent-1.3.4.jar
L1/trove-1.1-beta-5.jar
L1/sigar-1.6.3.jar
L1/libsigar-amd64-linux-1.6.3.so
L1/libsigar-sparc-solaris-1.6.3.so
L1/libsigar-x86-linux-1.6.3.so
L1/sigar-x86-winnt-1.6.3.dll
L1/sigar-x86-winnt-1.6.3.lib
L1/sigar-amd64-winnt-1.6.3.dll
L1/libsigar-universal-macosx-1.6.3.dylib
L1/slf4j-api-1.5.11.jar
TIMs/excludes-config-3.2.1.jar
TIMs/guimodels-config-3.2.1.jar
TIMs/jdk15-preinst-config-3.2.1.jar
TIMs/standard-config-3.2.1.jar
TIMs/tim-ehcache-2.0-1.5.3.jar
TIMs/tim-distributed-cache-1.3.3.jar
TIMs/tim-concurrent-collections-1.3.3.jar
TIMs/modules-base-1.2.1.jar
TIMs/tim-ehcache-2.0-hibernate-ui-1.5.3.jar
TIMs/tim-async-processing-1.3.3.jar
TIMs/tim-annotations-1.5.2.jar
build-data.txt
net.sf.ehcache.terracotta.L1Loader.class
net.sf.ehcache.terracotta.AppLevelTIMLoader.class
net.sf.ehcache.terracotta.StandaloneTerracottaClusteredInstanceFactory.class
net.sf.ehcache.terracotta.StandaloneL1Boot.class
net.sf.ehcache.terracotta.BootjarLoader.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.ReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.MemoryMappedReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.ReadOnlyFileInputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.SimpleReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.FilterReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.AbstractReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.FastReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.BufferedReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.rof.ChannelReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.Streams.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReadWriteLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.Files.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.Temps.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.LEDataOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.SynchronizedInputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.SuffixSet.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.Paths.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.Path.class
org.terracotta.agent.repkg.de.schlichtherle.io.util.SynchronizedOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.LegacyExecutor.class
org.terracotta.agent.repkg.de.schlichtherle.io.Files$CopyLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.ContainsFileException.class
org.terracotta.agent.repkg.de.schlichtherle.io.Streams$1Reader.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$LinkDelta.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReentrantReadWriteLock$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.AbstractArchiveDetector.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController$ResetFileSystem$1Mounter.class
org.terracotta.agent.repkg.de.schlichtherle.io.InputIOException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReentrantReadWriteLock$ReadLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$FileArchiveEntryFalsePositiveException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveDetector.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$RfsEntryFalsePositiveException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveEntryStreamClosedException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$Delta.class
org.terracotta.agent.repkg.de.schlichtherle.io.JSE5Executor$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.UpdatingArchiveController$1Locker.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$AbstractDelta$Element.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveControllers.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveOutputBusyException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.LegacyExecutor$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.DefaultArchiveDetector.class
org.terracotta.agent.repkg.de.schlichtherle.io.JSE5Executor.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReentrantReadWriteLock$WriteLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.Files$1IOStreamCreator$1SrcControllerUpdater.class
org.terracotta.agent.repkg.de.schlichtherle.io.UpdatingArchiveController.class
org.terracotta.agent.repkg.de.schlichtherle.io.InputArchiveMetaData$EntryInputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.IORunnable.class
org.terracotta.agent.repkg.de.schlichtherle.io.Executor.class
org.terracotta.agent.repkg.de.schlichtherle.io.UpdatingArchiveController$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveInputBusyWarningException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveControllers$ShutdownHook.class
org.terracotta.agent.repkg.de.schlichtherle.io.Streams$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveException.class
org.terracotta.agent.repkg.de.schlichtherle.io.FileOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveBusyException.class
org.terracotta.agent.repkg.de.schlichtherle.io.JSE5Executor$JSE5Task.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReentrantReadWriteLock$AbstractLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$ArchiveReadOnlyException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController$MountedFileSystem.class
org.terracotta.agent.repkg.de.schlichtherle.io.OutputArchiveMetaData$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$FalsePositiveException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$ArchiveEntryFalsePositiveException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveBusyWarningException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReentrantReadWriteLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveStatistics.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveDriverRegistry$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.ChainableIOException.class
org.terracotta.agent.repkg.de.schlichtherle.io.FileReader.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController$FalsePositiveFileSystem.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$ArchiveEntryNotFoundException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController$AutoMounter.class
org.terracotta.agent.repkg.de.schlichtherle.io.File.class
org.terracotta.agent.repkg.de.schlichtherle.io.ChainableIOException$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.FileFactory.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveDriverRegistry.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$ArchiveFileSystemException.class
org.terracotta.agent.repkg.de.schlichtherle.io.Files$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.GlobalArchiveDriverRegistry.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveWarningException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveEntryMetaData$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$AbstractDelta.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveControllers$LiveArchiveStatistics.class
org.terracotta.agent.repkg.de.schlichtherle.io.ChainableIOException$2.class
org.terracotta.agent.repkg.de.schlichtherle.io.Task.class
org.terracotta.agent.repkg.de.schlichtherle.io.FileWriter.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$DirectoryArchiveEntryFalsePositiveException.class
org.terracotta.agent.repkg.de.schlichtherle.io.FileBusyException.class
org.terracotta.agent.repkg.de.schlichtherle.io.JSE5Executor$1ThreadFactory.class
org.terracotta.agent.repkg.de.schlichtherle.io.OutputArchiveMetaData$EntryOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.OutputArchiveMetaData.class
org.terracotta.agent.repkg.de.schlichtherle.io.ReentrantLock.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveController$ArchiveFileNotFoundException.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.AbstractArchiveDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.ArchiveEntryFactory.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.TransientIOException.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.AbstractArchiveDriver$ThreadLocalEncoder.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.InputArchiveBusyException.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.InputArchive.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.AbstractArchiveDriver$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.RfsEntry.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.ArchiveDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.AbstractArchiveDriver$InconsistentCharsetSupportError.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.OutputArchiveBusyException.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.OutputArchive.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.spi.ArchiveEntry.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32Entry.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32OutputArchive$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32OutputArchive$EntryOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32InputArchive.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.ReadOnlySfxDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32OutputArchive$TempEntryOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32OutputArchive.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.CheckedZip32InputArchive.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.CheckedJarDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.JarDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.CheckedZip32OutputArchive.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.AbstractSfxDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.ReadWriteSfxDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.CheckedReadOnlySfxDriver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32Driver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.Zip32OutputArchive$Crc32OutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.zip.CheckedZip32Driver.class
org.terracotta.agent.repkg.de.schlichtherle.io.archive.Archive.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystem$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.Files$1IOStreamCreator.class
org.terracotta.agent.repkg.de.schlichtherle.io.LegacyExecutor$LegacyTask.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveControllers$ControllerEnumeration.class
org.terracotta.agent.repkg.de.schlichtherle.io.FileInputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.CountingReadOnlyFile.class
org.terracotta.agent.repkg.de.schlichtherle.io.InputArchiveMetaData.class
org.terracotta.agent.repkg.de.schlichtherle.io.Files$1OStreamCreator.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveControllers$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.CountingOutputStream.class
org.terracotta.agent.repkg.de.schlichtherle.io.InputArchiveMetaData$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController$ResetFileSystem.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveOutputBusyWarningException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveFileSystemController$1.class
org.terracotta.agent.repkg.de.schlichtherle.io.Entry.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveEntryMetaData.class
org.terracotta.agent.repkg.de.schlichtherle.io.Streams$Buffer.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveDriverRegistry$IllegalArchiveDriverException.class
org.terracotta.agent.repkg.de.schlichtherle.io.ArchiveInputBusyException.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider$Cancelled.class
org.terracotta.agent.repkg.de.schlichtherle.key.KeyPromptingTimeoutException.class
org.terracotta.agent.repkg.de.schlichtherle.key.KeyManager$KeyProviderCommand.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider$PromptingLock.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider$KeyInvalidated.class
org.terracotta.agent.repkg.de.schlichtherle.key.KeyManager$1ResetAndRemoveKeyProvider.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingAesKeyProvider.class
org.terracotta.agent.repkg.de.schlichtherle.key.KeyPromptingCancelledException.class
org.terracotta.agent.repkg.de.schlichtherle.key.UnknownKeyException.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider$KeyChangeRequested.class
org.terracotta.agent.repkg.de.schlichtherle.key.SharedKeyProvider.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider$KeyChanged.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyManager$1.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyManager.class
org.terracotta.agent.repkg.de.schlichtherle.key.PromptingKeyProvider$1.class
org.terracotta.agent.repkg.de.schlichtherle.key.KeyProvider.class
org.terracotta.agent.repkg.de.schlichtherle.key.KeyPromptingDisabledException.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
ehcache-terracotta-bootstrap-2.1.0.jar
/net.sf.ehcache/ehcache-terracotta-bootstrap/2.1.0
查看ehcache-terracotta-bootstrap所有版本文件
terracotta-api-${terracotta-api.version}.jar
/org.terracotta.api/terracotta-api/${terracotta-api.version}
查看terracotta-api所有版本文件
${terracotta-l1.artifactId}-${terracotta.version}.jar
/org.terracotta/${terracotta-l1.artifactId}/${terracotta.version}
查看${terracotta-l1.artifactId}所有版本文件
excludes-config-${terracotta.version}.jar
/org.terracotta.modules/excludes-config/${terracotta.version}
查看excludes-config所有版本文件
guimodels-config-${terracotta.version}.jar
/org.terracotta.modules/guimodels-config/${terracotta.version}
查看guimodels-config所有版本文件
jdk15-preinst-config-${terracotta.version}.jar
/org.terracotta.modules/jdk15-preinst-config/${terracotta.version}
查看jdk15-preinst-config所有版本文件
standard-config-${terracotta.version}.jar
/org.terracotta.modules/standard-config/${terracotta.version}
查看standard-config所有版本文件
tim-ehcache-2.0-${tim-ehcache-2.0.version}.jar
/org.terracotta.modules/tim-ehcache-2.0/${tim-ehcache-2.0.version}
查看tim-ehcache-2.0所有版本文件
|