配置一份需要junit和jdbc依赖的Maven项目基本配置文件。pom.xml?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置一份需要junit和jdbc依赖的Maven项目基本配置文件。pom.xml?相关的知识,希望对你有一定的参考价值。
参考技术A <project><modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>myproject</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<!-- JUnit 依赖 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- JDBC 依赖 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.19</version>
</dependency>
</dependencies>
</project> 参考技术B <?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> <groupId>com.example</groupId> <artifactId>my-maven-project</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.13</version> </dependency> </dependencies></project>
以上是关于配置一份需要junit和jdbc依赖的Maven项目基本配置文件。pom.xml?的主要内容,如果未能解决你的问题,请参考以下文章
使用 Maven Surefire 运行依赖项 jar 中包含的 JUnit 测试
无法从 Bndtools 中的 Maven 存储库添加测试依赖项