131 lines
4.7 KiB
XML
131 lines
4.7 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|||
|
|
<!--
|
|||
|
|
~ Copyright (c) 2023 codvision.com All Rights Reserved.
|
|||
|
|
-->
|
|||
|
|
|
|||
|
|
<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>
|
|||
|
|
<groupId>com.codvision</groupId>
|
|||
|
|
<artifactId>cvbp</artifactId>
|
|||
|
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
|
</parent>
|
|||
|
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|
|||
|
|
<artifactId>cvbp-monitor</artifactId>
|
|||
|
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
|
<packaging>jar</packaging>
|
|||
|
|
<description>基础平台-系统监控中心</description>
|
|||
|
|
|
|||
|
|
<properties>
|
|||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
|
|
</properties>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.codvision</groupId>
|
|||
|
|
<artifactId>cvbp-web-core</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.codvision</groupId>
|
|||
|
|
<artifactId>cvbp-auth-core</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.postgresql</groupId>
|
|||
|
|
<artifactId>postgresql</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>cn.hutool</groupId>
|
|||
|
|
<artifactId>hutool-system</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.github.oshi</groupId>
|
|||
|
|
<artifactId>oshi-core</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.codvision</groupId>
|
|||
|
|
<artifactId>cvbp-log-core</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
</dependencies>
|
|||
|
|
|
|||
|
|
<profiles>
|
|||
|
|
<profile>
|
|||
|
|
<id>dev</id>
|
|||
|
|
<properties>
|
|||
|
|
<profiles.active>dev</profiles.active>
|
|||
|
|
</properties>
|
|||
|
|
<activation>
|
|||
|
|
<!-- 默认环境 -->
|
|||
|
|
<activeByDefault>true</activeByDefault>
|
|||
|
|
</activation>
|
|||
|
|
</profile>
|
|||
|
|
<profile>
|
|||
|
|
<id>prd</id>
|
|||
|
|
<properties>
|
|||
|
|
<profiles.active>prd</profiles.active>
|
|||
|
|
</properties>
|
|||
|
|
</profile>
|
|||
|
|
</profiles>
|
|||
|
|
|
|||
|
|
<build>
|
|||
|
|
<finalName>
|
|||
|
|
${project.artifactId}-${project.version}
|
|||
|
|
</finalName>
|
|||
|
|
<plugins>
|
|||
|
|
<plugin>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
|
<configuration>
|
|||
|
|
<classifier>exec</classifier>
|
|||
|
|
<executable>true</executable>
|
|||
|
|
</configuration>
|
|||
|
|
</plugin>
|
|||
|
|
<plugin>
|
|||
|
|
<groupId>pl.project13.maven</groupId>
|
|||
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|||
|
|
<executions>
|
|||
|
|
<execution>
|
|||
|
|
<id>get-the-git-infos</id>
|
|||
|
|
<goals>
|
|||
|
|
<goal>revision</goal>
|
|||
|
|
</goals>
|
|||
|
|
</execution>
|
|||
|
|
</executions>
|
|||
|
|
<configuration>
|
|||
|
|
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
|
|||
|
|
<prefix>git</prefix>
|
|||
|
|
<verbose>true</verbose>
|
|||
|
|
<!-- 是否离线解决:Authentication is required but no CredentialsProvider has been registered问题 -->
|
|||
|
|
<offline>true</offline>
|
|||
|
|
<dateFormat>yyyy-MM-dd HH:mm:ss</dateFormat>
|
|||
|
|
<!-- 是否生 git.properties 属性文件 -->
|
|||
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|||
|
|
<!-- 生成版本信息文件名 -->
|
|||
|
|
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.json</generateGitPropertiesFilename>
|
|||
|
|
<format>json</format>
|
|||
|
|
<!-- git描述配置,可选;由JGit提供实现 -->
|
|||
|
|
<gitDescribe>
|
|||
|
|
<!-- 是否生成描述属性 -->
|
|||
|
|
<skip>false</skip>
|
|||
|
|
<!-- 提交操作未发现tag时,仅打印提交操作ID -->
|
|||
|
|
<always>false</always>
|
|||
|
|
<!-- 提交操作ID显式字符长度,最大值为:40;默认值:7; 0代表特殊意义;后面有解释; -->
|
|||
|
|
<abbrev>7</abbrev>
|
|||
|
|
<!-- 构建触发时,代码有修改时(即"dirty state"),添加指定后缀;默认值:""; -->
|
|||
|
|
<dirty>-dirty</dirty>
|
|||
|
|
</gitDescribe>
|
|||
|
|
</configuration>
|
|||
|
|
</plugin>
|
|||
|
|
</plugins>
|
|||
|
|
</build>
|
|||
|
|
</project>
|