1 Star 0 Fork 1

薛路/zongheng-demo

forked from tzx/zongheng-demo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.37 KB
一键复制 编辑 原始数据 按行查看 历史
李辉 提交于 2021-10-14 11:11 . sadfas
<?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>
<parent>
<artifactId>zongheng-parent</artifactId>
<groupId>com.zenith.zongheng</groupId>
<version>1.2.0</version>
</parent>
<groupId>com.zenith</groupId>
<artifactId>zongheng-demo</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>zongheng-demo-api</module>
<module>zongheng-demo-service</module>
<module>zongheng-demo-web</module>
<module>zongheng-demo-run</module>
</modules>
<profiles>
<profile>
<!-- 开发环境123123 -->
<id>dev</id>
<properties>
<env>dev</env>
<datasource.url><![CDATA[jdbc:mysql://127.0.0.1:3306/zongheng-demo?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8]]></datasource.url>
<datasource.driver>com.mysql.cj.jdbc.Driver</datasource.driver>
<datasource.username>root</datasource.username>
<datasource.password>root</datasource.password>
</properties>
<!-- 是否默认 true表示默认-->
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<!-- 测试环境 -->
<id>test</id>
<properties>
<env>test</env>
<datasource.url><![CDATA[jdbc:mysql://127.0.0.1:3306/zongheng-demo?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8]]></datasource.url>
<datasource.driver>com.mysql.cj.jdbc.Driver</datasource.driver>
<datasource.username>root</datasource.username>
<datasource.password>root</datasource.password>
</properties>
</profile>
<profile>
<!-- 正式环境 -->
<id>prod</id>
<properties>
<env>prod</env>
<datasource.url><![CDATA[jdbc:mysql://127.0.0.1:3306/zongheng-demo?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8]]></datasource.url>
<datasource.driver>com.mysql.cj.jdbc.Driver</datasource.driver>
<datasource.username>root</datasource.username>
<datasource.password>root</datasource.password>
</properties>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.zenith</groupId>
<artifactId>zongheng-demo-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.zenith</groupId>
<artifactId>zongheng-demo-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.zenith</groupId>
<artifactId>zongheng-demo-web</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xuegao9527/zongheng-demo.git
git@gitee.com:xuegao9527/zongheng-demo.git
xuegao9527
zongheng-demo
zongheng-demo
master

搜索帮助