mirror of
https://github.com/chillzhuang/blade-tool
synced 2024-11-10 20:49:32 +08:00
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
|
<?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>blade-tool</artifactId>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>blade-core-bom</artifactId>
|
||
|
<name>${project.artifactId}</name>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>flatten-maven-plugin</artifactId>
|
||
|
<version>${maven-flatten.version}</version>
|
||
|
<configuration>
|
||
|
<updatePomFile>true</updatePomFile>
|
||
|
<flattenMode>oss</flattenMode>
|
||
|
<pomElements>
|
||
|
<dependencyManagement>expand</dependencyManagement>
|
||
|
<pluginManagement>remove</pluginManagement>
|
||
|
<dependencies>remove</dependencies>
|
||
|
<properties>remove</properties>
|
||
|
<repositories>remove</repositories>
|
||
|
</pomElements>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|