mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
67 lines
2.3 KiB
XML
67 lines
2.3 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">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.jnpf</groupId>
|
||
|
<artifactId>jnpf-dependencies</artifactId>
|
||
|
<version>5.2.0-RELEASE</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>jnpf-tenant</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.jnpf</groupId>
|
||
|
<artifactId>jnpf-common-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<!--prometheus监测-->
|
||
|
<dependency>
|
||
|
<groupId>io.micrometer</groupId>
|
||
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jnpf</groupId>
|
||
|
<artifactId>jnpf-common-security</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jnpf</groupId>
|
||
|
<artifactId>jnpf-common-swagger</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jnpf</groupId>
|
||
|
<artifactId>jnpf-common-database</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>jnpf-tenant-${project.version}</finalName>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<!-- 指定该Main Class为全局的唯一入口 -->
|
||
|
<mainClass>jnpf.JnpfTenantApplication</mainClass>
|
||
|
<layout>ZIP</layout>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|