1 Star 0 Fork 1

哲也 / guerlab-cloud-monitor-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.59 KB
一键复制 编辑 原始数据 按行查看 历史
guerlab 提交于 2022-04-07 23:59 . release to 2022.4.1
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<groupId>net.guerlab.cloud.monitor.admin</groupId>
<artifactId>guerlab-cloud-monitor-admin</artifactId>
<version>${revision}</version>
<name>Guerlab Cloud Monitor Admin</name>
<description>spring boot admin of guerlab cloud</description>
<url>https://gitee.com/guerlab_net/guerlab-cloud-monitor-admin</url>
<parent>
<groupId>net.guerlab.builder</groupId>
<artifactId>guerlab-builder</artifactId>
<version>1.2.1</version>
</parent>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE Version 3</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>guer</id>
<name>guer</name>
<email>master@guerlab.net</email>
<organization>guerlab</organization>
<organizationUrl>https://www.guerlab.net</organizationUrl>
</developer>
</developers>
<organization>
<name>guerlab</name>
<url>https://www.guerlab.net</url>
</organization>
<scm>
<connection>scm:git:https://gitee.com/guerlab_net/guerlab-cloud-monitor-admin.git</connection>
<developerConnection>scm:git:https://gitee.com/guerlab_net/guerlab-cloud-monitor-admin.git</developerConnection>
<url>https://gitee.com/guerlab_net/guerlab-cloud-monitor-admin</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>gitee</system>
<url>https://gitee.com/guerlab_net/guerlab-cloud-monitor-admin/issues</url>
</issueManagement>
<properties>
<revision>2022.4.1</revision>
<main.basedir>${basedir}</main.basedir>
<java.version>17</java.version>
<guerlab-cloud.version>2022.4.1</guerlab-cloud.version>
<spring-boot-admin.version>2.6.5</spring-boot-admin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.guerlab.cloud</groupId>
<artifactId>guerlab-cloud</artifactId>
<version>${guerlab-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-dependencies</artifactId>
<version>${spring-boot-admin.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>spring-boot</id>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>net.guerlab.cloud.monitor.admin.runner.AdminApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/zheye1024/guerlab-cloud-monitor-admin.git
git@gitee.com:zheye1024/guerlab-cloud-monitor-admin.git
zheye1024
guerlab-cloud-monitor-admin
guerlab-cloud-monitor-admin
master

搜索帮助