123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <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>com.ssj</groupId>
- <artifactId>ssj</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>ssj-timer-task</artifactId>
- <packaging>war</packaging>
- <name>ssj-timer-task</name>
- <description>私塾家定时器</description>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-kmt-exercise-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-sys-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-weixin</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-rabbitmq</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!-- 任务调度quartz -->
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>2.2.3</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz-jobs</artifactId>
- <version>2.2.3</version>
- </dependency>
-
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-mail</artifactId>
- </dependency>
-
-
-
- </dependencies>
- </project>
|