add: nutzboot-starter-jedisque

This commit is contained in:
Howe Chiang 2017-11-15 12:59:55 +08:00
parent cefc02304a
commit b68c1f084d
4 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<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.nutz</groupId>
<artifactId>nutzboot-parent</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>nutzboot-starter-jedisque</artifactId>
<dependencies>
<dependency>
<groupId>org.nutz</groupId>
<artifactId>nutzboot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.nutz</groupId>
<artifactId>nutz-integration-jedisque</artifactId>
<version>1.r.63-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.github.xetorthio</groupId>
<artifactId>jedisque</artifactId>
<version>0.0.5-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,14 @@
package org.nutz.boot.starter.jedisque;
import org.nutz.boot.ioc.IocLoaderProvider;
import org.nutz.integration.jedisque.JedisqueIocLoader;
import org.nutz.ioc.IocLoader;
import org.nutz.ioc.loader.annotation.IocBean;
@IocBean
public class JedisqueStarter implements IocLoaderProvider {
public IocLoader getIocLoader() {
return new JedisqueIocLoader();
}
}

View File

@ -0,0 +1 @@
org.nutz.boot.starter.jedisque.JedisqueStarter

View File

@ -21,6 +21,7 @@
<module>nutzboot-starter-swagger</module>
<module>nutzboot-starter-hasor</module>
<module>nutzboot-starter-jedis</module>
<module>nutzboot-starter-jedisque</module>
<module>nutzboot-starter-mongodb</module>
<module>nutzboot-starter-ngrok</module>
<module>nutzboot-starter-cfx</module>