|
@@ -2,12 +2,13 @@
|
|
|
<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>server-parent</artifactId>
|
|
|
<groupId>cn.minbb</groupId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>server-service-impl</artifactId>
|
|
|
|
|
@@ -31,6 +32,28 @@
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- MySQL https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>8.0.25</version>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-jdbc</artifactId>
|
|
|
+ <version>5.3.7</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>1.2.6</version>
|
|
|
+ </dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|