pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.example</groupId>
  7. <artifactId>MyBatisTest</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>MyBatisTest</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.target>11</maven.compiler.target>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <junit.version>5.9.1</junit.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.mysql</groupId>
  19. <artifactId>mysql-connector-j</artifactId>
  20. <version>8.0.33</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mybatis</groupId>
  24. <artifactId>mybatis</artifactId>
  25. <version>3.5.9</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.junit.jupiter</groupId>
  29. <artifactId>junit-jupiter-api</artifactId>
  30. <version>${junit.version}</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.junit.jupiter</groupId>
  35. <artifactId>junit-jupiter-engine</artifactId>
  36. <version>${junit.version}</version>
  37. <scope>test</scope>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. </plugins>
  43. </build>
  44. </project>