<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.4.3</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.dobbinsoft</groupId>
|
<artifactId>fw-launcher</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>fw-launcher</name>
|
<description>dobbinfw启动器</description>
|
<properties>
|
<java.version>1.8</java.version>
|
<dobbinfw-support.version>0.0.1-SNAPSHOT</dobbinfw-support.version>
|
</properties>
|
<dependencies>
|
|
<dependency>
|
<groupId>com.dobbinsoft</groupId>
|
<artifactId>fw-support</artifactId>
|
<version>${dobbinfw-support.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!-- lombok 工具 -->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.4</version>
|
<scope>provided</scope>
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
<repository>
|
<id>rdc-snapshot</id>
|
<name>Aliyun Xiao</name>
|
<url>https://packages.aliyun.com/maven/repository/2084582-snapshot-Vrq4iK/</url>
|
</repository>
|
</distributionManagement>
|
|
<build>
|
<plugins>
|
<!-- Source attach plugin -->
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-source-plugin</artifactId>
|
<executions>
|
<execution>
|
<id>attach-sources</id>
|
<goals>
|
<goal>jar</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<!-- 配置编译时保留参数名 -->
|
<configuration>
|
<debuglevel>lines,vars,source</debuglevel>
|
<compilerArgs>
|
<arg>-parameters</arg>
|
</compilerArgs>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|