2019-01-30 17:06:23 +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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>SpringBlade</artifactId>
|
|
|
|
<groupId>org.springblade</groupId>
|
2021-03-24 18:54:45 +08:00
|
|
|
<version>3.0.2</version>
|
2019-01-30 17:06:23 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>blade-common</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<version>${blade.project.version}</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-core-launch</artifactId>
|
|
|
|
<version>${blade.tool.version}</version>
|
|
|
|
</dependency>
|
2019-02-13 17:11:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.dreamlu</groupId>
|
|
|
|
<artifactId>mica-auto</artifactId>
|
|
|
|
<version>${mica.auto.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-01-30 17:06:23 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
|
|
<version>${docker.plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<skipDockerBuild>true</skipDockerBuild>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|