169 lines
6.6 KiB
XML
169 lines
6.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2020 pig4cloud Authors. All Rights Reserved.
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<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>com.sunyard.apms</groupId>
|
|
<artifactId>apms-visual</artifactId>
|
|
<version>1.1.6</version>
|
|
|
|
<description>apms 图形化相关功能</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
<version>${knife4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.16</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<packaging>pom</packaging>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.sunyard.apms</groupId>
|
|
<artifactId>apms-common</artifactId>
|
|
<version>1.1.6</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<modules>
|
|
<!--<module>apms-xxl-job-admin</module>-->
|
|
<module>apms-codegen</module>
|
|
<module>apms-monitor</module>
|
|
<!--<module>apms-sentinel-dashboard</module>-->
|
|
<module>apms-dam-board</module>
|
|
<!--<module>apms-pay</module>-->
|
|
</modules>
|
|
|
|
<properties>
|
|
<spring-boot.version>2.3.6.RELEASE</spring-boot.version>
|
|
<docker.plugin.version>0.33.0</docker.plugin.version>
|
|
<testable.version>0.4.10</testable.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<apms.common.version>1.0.0</apms.common.version>
|
|
<spring-cloud.version>Hoxton.SR9</spring-cloud.version>
|
|
<spring-cloud-alibaba.version>2.2.3.RELEASE</spring-cloud-alibaba.version>
|
|
<security.oauth.version>2.3.2.RELEASE</security.oauth.version>
|
|
<spring-boot-admin.version>2.3.1</spring-boot-admin.version>
|
|
<springfox-boot-starter.version>3.0.0</springfox-boot-starter.version>
|
|
<xxl-job.version>2.2.0</xxl-job.version>
|
|
<hutool.version>5.5.5</hutool.version>
|
|
<mybatis-plus.version>3.4.1</mybatis-plus.version>
|
|
<dynamic-ds.version>3.2.0</dynamic-ds.version>
|
|
<captcha.version>2.2.0</captcha.version>
|
|
<velocity.version>1.7</velocity.version>
|
|
<jasypt.version>2.1.0</jasypt.version>
|
|
<aviator.version>5.1.4</aviator.version>
|
|
<swagger.fox.version>3.0.0</swagger.fox.version>
|
|
<docker.host>tcp://10.0.2.219:2375</docker.host>
|
|
<docker.registry>127.0.0.1</docker.registry>
|
|
<docker.namespace>apms</docker.namespace>
|
|
<docker.username>username</docker.username>
|
|
<docker.password>password</docker.password>
|
|
<knife4j.version>2.0.7</knife4j.version>
|
|
<captcha.version>2.2.0</captcha.version>
|
|
<fastjson.version>1.2.75</fastjson.version>
|
|
<swagger.core.version>1.5.24</swagger.core.version>
|
|
<guava.version>30.1-jre</guava.version>
|
|
<guava.retrying.version>2.0.0</guava.retrying.version>
|
|
<fastdfs-client.version>1.26.7</fastdfs-client.version>
|
|
<poi_version>3.14</poi_version>
|
|
</properties>
|
|
<build>
|
|
<finalName>${project.name}</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<configuration>
|
|
<finalName>${project.build.finalName}</finalName>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
<profiles.active>dev</profiles.active>
|
|
</properties>
|
|
<activation>
|
|
<!-- 默认环境 -->
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
<profile>
|
|
<id>sit</id>
|
|
<properties>
|
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
<spring.profiles.active>sit</spring.profiles.active>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>uat</id>
|
|
<properties>
|
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
<spring.profiles.active>uat</spring.profiles.active>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>pre</id>
|
|
<properties>
|
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
<spring.profiles.active>pre</spring.profiles.active>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>pro</id>
|
|
<properties>
|
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
<spring.profiles.active>pro</spring.profiles.active>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|