From 36ce484143e446ec7bb25d5ceeaaeaeadfbbcb51 Mon Sep 17 00:00:00 2001 From: wuyachi <wuyachi@163.com> Date: Mon, 6 May 2019 13:07:29 +0800 Subject: [PATCH] Update pom.xml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解决在intellij idea下启动,连接数据库时报“找不到mysql-connector-java-5.1.38.jar驱动”的错。 --- pom.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 926ba567..4fe335d9 100644 --- a/pom.xml +++ b/pom.xml @@ -68,6 +68,11 @@ <artifactId>jsch</artifactId> <version>0.1.54</version> </dependency> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>8.0.15</version> + </dependency> </dependencies> <build> @@ -103,4 +108,4 @@ </plugin> </plugins> </build> -</project> \ No newline at end of file +</project>