earth-frost/frost-executor/pom.xml
2019-12-14 17:12:30 +08:00

66 lines
1.5 KiB
XML

<?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>
<groupId>vip.justlive</groupId>
<artifactId>frost</artifactId>
<version>1.2.0</version>
</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>
<dependency>
<groupId>vip.justlive</groupId>
<artifactId>frost-core</artifactId>
</dependency>
<dependency>
<groupId>vip.justlive</groupId>
<artifactId>oxygen-ioc</artifactId>
<version>${oxygen.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<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>
</project>