1 Star 1 Fork 2

衬衫boy/易购商城

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.00 KB
一键复制 编辑 原始数据 按行查看 历史
<?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.lh</groupId>
<artifactId>buy-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>buy-common</module>
<module>buy-manager</module>
<module>buy-eureka-server</module>
<module>buy-portal</module>
<module>buy-portal/buy-portal-service</module>
<module>buy-portal/buy-portal-web</module>
<module>buy-content</module>
<module>buy-content-service</module>
</modules>
<!-- 打包方式修改为POM -->
<packaging>pom</packaging>
<!-- 继承-spring-boot-starter-parent -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!-- 统一管理依赖的版本 -->
<properties>
<java.version>1.8</java.version>
<!-- 重新定义mysql驱动的版本 -->
<mysql.version>5.1.38</mysql.version>
<!-- druid的版本 -->
<druid.version>1.1.10</druid.version>
</properties>
<!-- 如果需要添加额外的依赖,先在这里进行管理 -->
<dependencyManagement> <!-- 不做实际的依赖 -->
<!-- 添加除过场景启动器的其他依赖 -->
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<!-- springcloud的依赖 -->
<!-- spring cloud 的依赖 管理 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR5</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</resource>
<!-- 如果不配置,默认情况下,不会将java目录下的资源文件打包 -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/chenshanstudy/ch-egobuy.git
git@gitee.com:chenshanstudy/ch-egobuy.git
chenshanstudy
ch-egobuy
易购商城
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385