赞
踩
1、mvnrepository官网
https://mvnrepository.com/
2、找到需要的依赖(例:mysql)
搜索mysql
选择需要的版本
复制dependency
3、打开pom.xml
创建<dependencies><dependencies>
将dependency粘贴在<dependencies></dependencies>里
<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.test</groupId> <artifactId>first</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.13</version> </dependency> </dependencies> </project>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。