| 组织ID: |
com.orange.redis-embedded |
| 项目ID: |
embedded-redis |
| 版本: |
0.6 |
| 最后修改时间: |
2018-07-27 14:57:50 |
| 包类型: |
jar |
| 标题: |
embedded-redis |
| 描述: |
Redis embedded server for Java integration testing |
| 相关URL: |
https://github.com/gbrd/embedded-redis |
| 大小: |
3.87MB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.orange.redis-embedded</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.6</version>
</dependency>
|
| Gradle引入代码: |
com.orange.redis-embedded:embedded-redis:0.6
|
| 下载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>com.orange.redis-embedded</groupId>
<artifactId>embedded-redis</artifactId>
<packaging>jar</packaging>
<version>0.6</version>
<name>embedded-redis</name>
<description>Redis embedded server for Java integration testing</description>
<url>https://github.com/gbrd/embedded-redis</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>
<scm>
<url>https://github.com/gbrd/embedded-redis</url>
<connection>scm:git:git@github.com:gbrd/embedded-redis.git</connection>
<developerConnection>scm:git:git@github.com:gbrd/embedded-redis.git</developerConnection>
<tag>0.6</tag>
</scm>
<developers>
<developer>
<id>1</id>
<name>Krzysztof Styrc</name>
<email>kstyrc@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.1.0.RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.1</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<compilerVersion>1.6</compilerVersion>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
<!-- arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments -->
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
redis/2.8.5/linux/redis-server
redis/2.8.5/macosx/redis-server
redis.embedded.RedisServer.class
redis.embedded.RedisServer$RedisServerEnum.class
redis/2.8.9/linux/redis-server
redis/2.8.9/macosx/redis-server
META-INF/maven/com.orange.redis-embedded/embedded-redis/pom.xml
META-INF/maven/com.orange.redis-embedded/embedded-redis/pom.properties
|
| 依赖Jar: |
jedis-2.1.0.jar
/redis.clients/jedis/2.1.0
查看jedis所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
spring-data-redis-1.1.0.RELEASE.jar
/org.springframework.data/spring-data-redis/1.1.0.RELEASE
查看spring-data-redis所有版本文件
|