RuoYi/bmw-system/pom.xml

34 lines
938 B
XML
Raw Normal View History

2019-07-25 15:12:36 +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">
<parent>
2019-07-26 13:14:33 +08:00
<artifactId>bmw</artifactId>
<groupId>com.bmw</groupId>
2019-07-25 15:12:36 +08:00
<version>3.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2019-07-26 13:14:33 +08:00
<artifactId>bmw-system</artifactId>
2019-07-25 15:12:36 +08:00
<description>
system系统模块
</description>
<dependencies>
<!-- Mysql驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- 通用工具-->
<dependency>
2019-07-26 13:14:33 +08:00
<groupId>com.bmw</groupId>
<artifactId>bmw-common</artifactId>
2019-07-25 15:12:36 +08:00
</dependency>
</dependencies>
2018-10-07 14:16:47 +08:00
</project>