加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.43 KB
一键复制 编辑 原始数据 按行查看 历史
码斯托 提交于 2022-09-20 04:43 . update pom.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>
<groupId>com.wudimanong</groupId>
<artifactId>istio-micro-demo</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<!--引入Spring Boot父依赖-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
</parent>
<modules>
<module>micro-api</module>
<module>micro-order</module>
<module>micro-pay</module>
<module>micro-order-client</module>
<module>micro-pay-client</module>
<module>feign-istio-fake</module>
</modules>
<properties>
<!--定义Docker镜像仓库地址(阿里云)-->
<docker.repository>registry.cn-hangzhou.aliyuncs.com</docker.repository>
<docker.username>191333835@qq.com</docker.username>
<!--密码我替换了 请用自己仓库的的-->
<docker.password>xxxxxx</docker.password>
<docker.namespace>cloud-navtive</docker.namespace>
</properties>
<dependencyManagement>
<dependencies>
<!--引入fastJson依赖-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.70</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>dev</id>
<properties>
<!-- 环境标识,需要与配置文件的名称相对应 -->
<profiles.active>dev</profiles.active>
</properties>
<activation>
<!-- 默认环境 -->
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>test</id>
<properties>
<profiles.active>test</profiles.active>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<profiles.active>prod</profiles.active>
</properties>
</profile>
</profiles>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化