You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.1 KiB
XML
58 lines
2.1 KiB
XML
3 years ago
|
<?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>waynboot</artifactId>
|
||
|
<groupId>com.wayn</groupId>
|
||
|
<version>1.1.0</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>waynboot-monitor</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<main-class>com.wayn.MonitorApplication</main-class>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>de.codecentric</groupId>
|
||
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
||
|
<version>${spring-boot-admin.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<!-- 指定该Main Class为全局的唯一入口 -->
|
||
|
<mainClass>${main-class}</mainClass>
|
||
|
<layout>ZIP</layout>
|
||
|
<!-- <commandlineArguments>-->
|
||
|
<!-- -parameters-->
|
||
|
<!-- </commandlineArguments>-->
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|