diboot/diboot-core-starter/pom.xml

38 lines
1.2 KiB
XML
Raw Permalink Normal View History

2020-01-11 16:29:36 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
2020-01-16 09:53:46 +08:00
<groupId>com.diboot</groupId>
<artifactId>diboot-root</artifactId>
2020-07-17 16:54:47 +08:00
<version>2.1.1</version>
2020-01-11 16:29:36 +08:00
</parent>
<artifactId>diboot-core-spring-boot-starter</artifactId>
2020-07-17 16:54:47 +08:00
<version>2.1.1</version>
2020-01-16 09:53:46 +08:00
<packaging>jar</packaging>
<description>diboot core starter project</description>
2020-01-11 16:29:36 +08:00
<dependencies>
2020-01-16 22:10:49 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
2020-01-11 16:29:36 +08:00
<!-- 添加starter依赖jar -->
<dependency>
<groupId>com.diboot</groupId>
<artifactId>diboot-core</artifactId>
2020-07-17 16:54:47 +08:00
<version>2.1.1</version>
2020-01-11 16:29:36 +08:00
</dependency>
2020-01-16 22:10:49 +08:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
2020-01-11 16:29:36 +08:00
</dependencies>
</project>