mirror of
https://gitee.com/nutz/nutzboot.git
synced 2024-12-02 03:38:08 +08:00
cefc02304a
add: 新增jedis,quartz的starter add: redis的demo
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<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-quartz</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutzboot-starter</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutz-integration-quartz</artifactId>
|
|
<version>1.r.63-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutz</artifactId>
|
|
<version>1.r.63-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |