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>blade-service</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-log</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<version>${blade.project.version}</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--Blade-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-core-boot</artifactId>
|
|
|
|
<version>${blade.tool.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2019-05-05 10:01:20 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2019-09-23 17:56:34 +08:00
|
|
|
<!--suppress UnresolvedMavenProperty -->
|
2019-05-05 10:01:20 +08:00
|
|
|
<copy overwrite="true"
|
|
|
|
tofile="${session.executionRootDirectory}/target/${artifactId}.jar"
|
|
|
|
file="${project.build.directory}/${artifactId}.jar" />
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-01-30 17:06:23 +08:00
|
|
|
</project>
|