Files
shoulder-platform/shoulder-user-center/uaa-start/pom.xml
2020-11-02 01:59:13 +08:00

91 lines
2.7 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>
<groupId>cn.itlym.platform</groupId>
<artifactId>shoulder-user-center</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>uaa-start</artifactId>
<name>uaa</name>
<description>uaa-start</description>
<!--调试/运行/测试/打包 模块-->
<dependencies>
<dependency>
<groupId>cn.itlym.platform</groupId>
<artifactId>uaa-xxx</artifactId>
</dependency>
<!-- ============================= 中间件技术选型 ============================= -->
<!-- 数据库选用 mysql -->
<dependency>
<groupId>cn.itlym.platform</groupId>
<artifactId>uaa-storage-mysql</artifactId>
</dependency>
<!-- 默认只提供接口,不含 web 端 -->
<!--<dependency>
<groupId>cn.itlym.platform</groupId>
<artifactId>uaa-web</artifactId>
</dependency>-->
</dependencies>
<profiles>
<!-- 开发环境 -->
<profile>
<id>dev</id>
<properties>
<profile.active>dev</profile.active>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<!-- 测试环境-->
<profile>
<id>test</id>
<properties>
<profile.active>test</profile.active>
</properties>
</profile>
<!-- 生产环境-->
<profile>
<id>prod</id>
<properties>
<profile.active>prod</profile.active>
</properties>
</profile>
</profiles>
<build>
<!-- maven 默认使用 artifactId+version拼接 -->
<finalName>${project.artifactId}</finalName>
<!-- 动态打包环境配置源文件 fix shoulder-platform 中的统一配置,可删除 -->
<!--<filters>
<filter>../../dynamicConfig/config-${profile.active}.properties</filter>
</filters>-->
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
<!-- 是否替换资源中的属性properties.yml、banner 中需要获取应用版本号、名称、描述 -->
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>