组织ID: |
javax.cache.implementation |
项目ID: |
cache-ri |
版本: |
0.2 |
最后修改时间: |
2019-10-23 13:09:50 |
包类型: |
jar |
标题: |
JSR107 RI |
大小: |
70.06KB |
|
Maven引入代码: |
<dependency>
<groupId>javax.cache.implementation</groupId>
<artifactId>cache-ri</artifactId>
<version>0.2</version>
</dependency>
|
Gradle引入代码: |
javax.cache.implementation:cache-ri:0.2
|
下载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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>javax.cache.implementation</groupId>
<artifactId>cache-ri</artifactId>
<version>0.2</version>
<packaging>jar</packaging>
<name>JSR107 RI</name>
<url>https://github.com/jsr107/RI</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>0.2</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0-SP4</version>
<scope>compile</scope>
</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.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-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.6</version>
<executions>
<execution>
<phase>install</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>false</includeTestSourceDirectory>
<enableRulesSummary>true</enableRulesSummary>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!--Only releases need to be signed-->
<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>
<!--Required for CloudBees CI. Local builds will still work if you mvn install jsr107api first-->
<repositories>
<repository>
<id>cloudbees-snapshots</id>
<url>https://repository-jsr107.forge.cloudbees.com/snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
javax.cache.implementation.interceptor.BaseKeyedCacheInterceptor.class
javax.cache.implementation.interceptor.CacheInterceptorBinding.class
javax.cache.implementation.interceptor.CacheInvocationContextImpl.class
javax.cache.implementation.interceptor.CacheInvocationParameterImpl.class
javax.cache.implementation.interceptor.CacheKeyInvocationContextImpl.class
javax.cache.implementation.interceptor.CacheMethodDetailsImpl.class
javax.cache.implementation.interceptor.CacheParameterDetails.class
javax.cache.implementation.interceptor.CachePutMethodDetails.class
javax.cache.implementation.interceptor.CacheRemoveAllMethodDetails.class
javax.cache.implementation.interceptor.CacheRemoveEntryMethodDetails.class
javax.cache.implementation.interceptor.CacheResultMethodDetails.class
javax.cache.implementation.interceptor.InterceptorExtension.class
javax.cache.implementation.interceptor.InterceptorType.class
javax.cache.implementation.interceptor.RIBeanManagerUtil.class
javax.cache.implementation.interceptor.RICacheLookupUtil$1.class
javax.cache.implementation.interceptor.RICacheLookupUtil$ParameterDetails.class
javax.cache.implementation.interceptor.RICacheLookupUtil.class
javax.cache.implementation.interceptor.RICachePutInterceptor.class
javax.cache.implementation.interceptor.RICacheRemoveAllInterceptor.class
javax.cache.implementation.interceptor.RICacheRemoveEntryInterceptor.class
javax.cache.implementation.interceptor.RICacheResultInterceptor.class
javax.cache.implementation.interceptor.RIDefaultCacheKey.class
javax.cache.implementation.interceptor.RIDefaultCacheKeyGenerator.class
javax.cache.implementation.interceptor.RIDefaultCacheResolver.class
javax.cache.implementation.interceptor.RIDefaultCacheResolverFactory.class
javax.cache.implementation.interceptor.StaticCacheInvocationContext.class
javax.cache.implementation.interceptor.StaticCacheKeyInvocationContext.class
javax.cache.implementation.RIByReferenceSimpleCache.class
javax.cache.implementation.RIByValueSerializer$1.class
javax.cache.implementation.RIByValueSerializer$RIBinary.class
javax.cache.implementation.RIByValueSerializer.class
javax.cache.implementation.RIByValueSimpleCache$1.class
javax.cache.implementation.RIByValueSimpleCache$WrappedIterator$WrappedEntry.class
javax.cache.implementation.RIByValueSimpleCache$WrappedIterator.class
javax.cache.implementation.RIByValueSimpleCache.class
javax.cache.implementation.RICache$1.class
javax.cache.implementation.RICache$Builder.class
javax.cache.implementation.RICache$ListenerRegistration.class
javax.cache.implementation.RICache$RICacheLoaderLoadAllCallable.class
javax.cache.implementation.RICache$RICacheLoaderLoadCallable.class
javax.cache.implementation.RICache$RIEntry.class
javax.cache.implementation.RICache$RIEntryIterator.class
javax.cache.implementation.RICache$ScopedListener.class
javax.cache.implementation.RICache.class
javax.cache.implementation.RICacheConfiguration$1.class
javax.cache.implementation.RICacheConfiguration$Builder.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
cache-api-0.2.jar
/javax.cache/cache-api/0.2
查看cache-api所有版本文件
cdi-api-1.0-SP4.jar
/javax.enterprise/cdi-api/1.0-SP4
查看cdi-api所有版本文件
|