组织ID: |
com.couchbase.client |
项目ID: |
couchbase-spring-cache |
版本: |
2.1.0 |
最后修改时间: |
2018-07-24 12:47:03 |
包类型: |
jar |
标题: |
Couchbase Spring Cache |
描述: |
Spring Cache implementation based on the official Couchbase Java SDK |
相关URL: |
https://github.com/couchbaselabs/couchbase-spring-cache |
大小: |
14.01KB |
|
Maven引入代码: |
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>couchbase-spring-cache</artifactId>
<version>2.1.0</version>
</dependency>
|
Gradle引入代码: |
com.couchbase.client:couchbase-spring-cache: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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.couchbase.client</groupId>
<artifactId>couchbase-spring-cache</artifactId>
<version>2.1.0</version>
<packaging>jar</packaging>
<name>Couchbase Spring Cache</name>
<description>Spring Cache implementation based on the official Couchbase Java SDK</description>
<url>https://github.com/couchbaselabs/couchbase-spring-cache</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Couchbase, Inc.</name>
<url>http://couchbase.com</url>
</organization>
<scm>
<url>https://github.com/couchbaselabs/couchbase-spring-cache</url>
<connection>
scm:git:git://github.com/couchbaselabs/couchbase-spring-cache
</connection>
<developerConnection>
scm:git:git://github.com/couchbaselabs/couchbase-spring-cache
</developerConnection>
</scm>
<developers>
<developer>
<id>daschl</id>
<name>Michael Nitschinger</name>
<email>michael.nitschinger@couchbase.com</email>
</developer>
<developer>
<id>simonbasle</id>
<name>Simon Basl茅</name>
<email>simon@couchbase.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.6</java.version>
<spring.version>4.3.5.RELEASE</spring.version>
<couchbase.version>2.3.6</couchbase.version>
<slf4j.version>1.7.10</slf4j.version>
<junit.version>4.12</junit.version>
<hamcrest.version>1.3</hamcrest.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>java-client</artifactId>
<version>${couchbase.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>add-integration-test-source-as-test-sources</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<!-- add the following sources in addition to the unit tests -->
<source>${test-source-directory}</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<testResources>
<testResource>
<directory>src/integration/java</directory>
</testResource>
</testResources>
</build>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!-- by default, add also the int tests -->
<test-source-directory>src/integration/java</test-source-directory>
</properties>
</profile>
<profile>
<id>unit</id>
<activation>
<property>
<name>unit</name>
<value>true</value>
</property>
</activation>
<properties>
<!-- just adding the unit tests again, noop. -->
<test-source-directory>src/test/java</test-source-directory>
</properties>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.couchbase.client.spring.cache.CacheBuilder.class
com.couchbase.client.spring.cache.CouchbaseCache$1.class
com.couchbase.client.spring.cache.CouchbaseCache$2.class
com.couchbase.client.spring.cache.CouchbaseCache$3.class
com.couchbase.client.spring.cache.CouchbaseCache$4.class
com.couchbase.client.spring.cache.CouchbaseCache.class
com.couchbase.client.spring.cache.CouchbaseCacheManager.class
META-INF/maven/com.couchbase.client/couchbase-spring-cache/pom.xml
META-INF/maven/com.couchbase.client/couchbase-spring-cache/pom.properties
|
依赖Jar: |
java-client-${couchbase.version}.jar
/com.couchbase.client/java-client/${couchbase.version}
查看java-client所有版本文件
junit-${junit.version}.jar
/junit/junit/${junit.version}
查看junit所有版本文件
hamcrest-core-${hamcrest.version}.jar
/org.hamcrest/hamcrest-core/${hamcrest.version}
查看hamcrest-core所有版本文件
slf4j-api-${slf4j.version}.jar
/org.slf4j/slf4j-api/${slf4j.version}
查看slf4j-api所有版本文件
|