1 Star 0 Fork 0

小菜鸟/bill_parent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
小菜鸟 提交于 2020-05-19 17:02 +08:00 . 服务提供者完成
<?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>
<modules>
<module>bill-common</module>
<module>bill-domain</module>
<module>bill-mapper</module>
<module>bill-interface</module>
<module>bill-service</module>
<module>bill-web</module>
</modules>
<!--引入springboot 父项目-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.1.RELEASE</version>
<relativePath />
<!-- lookup parent from repository -->
</parent>
<groupId>cn.sxt</groupId>
<artifactId>bill_parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<dubbo.version>2.7.3</dubbo.version>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
<mybatisplus.version>3.2.0</mybatisplus.version>
</properties>
<dependencyManagement>
<dependencies>
<!--common-->
<dependency>
<groupId>cn.sxt</groupId>
<artifactId>bill-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- dubbo-apache -->
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
<version>${dubbo.version}</version>
</dependency>
<!-- 使用zk 做注册中心,Dubbo 需要的依赖 -->
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-dependencies-zookeeper</artifactId>
<version>${dubbo.version}</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 声明mybatisplus的依赖 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatisplus.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/upy/bill_parent.git
git@gitee.com:upy/bill_parent.git
upy
bill_parent
bill_parent
master

搜索帮助