pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.cdxw.mybatis</groupId>
  5. <artifactId>mybatis_cache</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <dependencies>
  9. <!-- Mybatis核心 -->
  10. <dependency>
  11. <groupId>org.mybatis</groupId>
  12. <artifactId>mybatis</artifactId>
  13. <version>3.5.11</version>
  14. </dependency>
  15. <!-- junit测试 -->
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.12</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <!-- MySQL驱动 -->
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. <version>8.0.16</version>
  27. </dependency>
  28. <!-- log4j日志 -->
  29. <dependency>
  30. <groupId>log4j</groupId>
  31. <artifactId>log4j</artifactId>
  32. <version>1.2.17</version>
  33. </dependency>
  34. <!-- Mybatis EHCache整合包 -->
  35. <dependency>
  36. <groupId>org.mybatis.caches</groupId>
  37. <artifactId>mybatis-ehcache</artifactId>
  38. <version>1.2.1</version>
  39. </dependency>
  40. <!-- slf4j日志门面的一个具体实现 -->
  41. <dependency>
  42. <groupId>ch.qos.logback</groupId>
  43. <artifactId>logback-classic</artifactId>
  44. <version>1.2.3</version>
  45. </dependency>
  46. </dependencies>
  47. </project>