2018-04-10 19:51:15 +08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2018-05-15 16:11:51 +08:00
|
|
|
<groupId>vip.justlive</groupId>
|
2018-04-10 19:51:15 +08:00
|
|
|
<artifactId>frost</artifactId>
|
2019-01-31 17:08:21 +08:00
|
|
|
<version>1.2.0</version>
|
2018-04-10 19:51:15 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>frost-executor</artifactId>
|
|
|
|
<name>frost-executor</name>
|
|
|
|
<url>https://gitee.com/justlive1/earth-frost</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2018-04-11 17:24:19 +08:00
|
|
|
|
2018-04-12 10:10:30 +08:00
|
|
|
<dependency>
|
2018-05-15 16:11:51 +08:00
|
|
|
<groupId>vip.justlive</groupId>
|
2018-10-17 17:11:27 +08:00
|
|
|
<artifactId>frost-core</artifactId>
|
2018-04-12 10:10:30 +08:00
|
|
|
</dependency>
|
2018-04-11 17:24:19 +08:00
|
|
|
|
2019-02-01 16:02:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2018-10-18 10:20:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2018-04-10 19:51:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-04-11 17:24:19 +08:00
|
|
|
|
2018-04-10 19:51:15 +08:00
|
|
|
</dependencies>
|
2018-05-02 19:19:38 +08:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>build-info</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-04-10 19:51:15 +08:00
|
|
|
</project>
|