mocker-redis-spring-boot-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.microwww</groupId> <artifactId>mocker-redis-spring-boot-parent</artifactId> <version>0.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>9</version> </parent> <name>spring-boot-mocker-redis</name> <url>https://github.com/microwww/spring-boot-mocker-redis/</url> <description>This is a redis server mock for spring-boot </description> <licenses> <license> <name>Apache License</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:microwww/spring-boot-mocker-redis.git</connection> <developerConnection>scm:git:git@github.com:microwww/spring-boot-mocker-redis.git</developerConnection> <url>https://github.com/microwww/spring-boot-mocker-redis</url> </scm> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <developers> <developer> <name>changshu.li</name> <email>lcs.005@163.com</email> <organization>microwww</organization> </developer> </developers> <groupId>com.github.microwww</groupId> <artifactId>mocker-redis-spring-boot-parent</artifactId> <version>0.0.3</version> <packaging>pom</packaging> <modules> <module>mocker-redis-spring-boot-autoconfigure</module> <module>mocker-redis-spring-boot-starter</module> </modules> <properties> <java.version>1.6</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.compilerVersion>${java.version}</maven.compiler.compilerVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <spring-boot.version>1.5.0.RELEASE</spring-boot.version> <jedis-mock.version>0.1.16</jedis-mock.version> <redis-serve.version>0.0.2-2.8</redis-serve.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>com.github.fppt</groupId> <artifactId>jedis-mock</artifactId> <version>${jedis-mock.version}</version> </dependency> <dependency> <groupId>com.github.microwww</groupId> <artifactId>redis-server</artifactId> <version>${redis-serve.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot.version}</version> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> </project>