特别说明: Mybatis 及 Mybatis-Spring 依赖请勿加入项目配置,以免引起版本冲突!!!
    Mybatis-Plus 会自动帮你维护!

    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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    5. <modelVersion>4.0.0</modelVersion>
    6. <groupId>com.wzy</groupId>
    7. <artifactId>MyBatisPlus</artifactId>
    8. <version>4.0-SNAPSHOT</version>
    9. <properties>
    10. <maven.compiler.source>8</maven.compiler.source>
    11. <maven.compiler.target>8</maven.compiler.target>
    12. </properties>
    13. <dependencies>
    14. <!-- mp 依赖 -->
    15. <dependency>
    16. <groupId>com.baomidou</groupId>
    17. <artifactId>mybatis-plus</artifactId>
    18. <version>2.3</version>
    19. </dependency>
    20. <!--junit -->
    21. <dependency>
    22. <groupId>junit</groupId>
    23. <artifactId>junit</artifactId>
    24. <version>4.9</version>
    25. </dependency>
    26. <!-- log4j -->
    27. <dependency>
    28. <groupId>log4j</groupId>
    29. <artifactId>log4j</artifactId>
    30. <version>1.2.17</version>
    31. </dependency>
    32. <!-- c3p0 -->
    33. <dependency>
    34. <groupId>com.mchange</groupId>
    35. <artifactId>c3p0</artifactId>
    36. <version>0.9.5.2</version>
    37. </dependency>
    38. <!-- mysql -->
    39. <dependency>
    40. <groupId>mysql</groupId>
    41. <artifactId>mysql-connector-java</artifactId>
    42. <version>5.1.37</version>
    43. </dependency>
    44. <!-- spring -->
    45. <dependency>
    46. <groupId>org.springframework</groupId>
    47. <artifactId>spring-context</artifactId>
    48. <version>4.3.10.RELEASE</version>
    49. </dependency>
    50. <dependency>
    51. <groupId>org.springframework</groupId>
    52. <artifactId>spring-orm</artifactId>
    53. <version>4.3.10.RELEASE</version>
    54. </dependency>
    55. <!--JavaBean的get、set、全参、无参toString的注解开发-->
    56. <dependency>
    57. <groupId>org.projectlombok</groupId>
    58. <artifactId>lombok</artifactId>
    59. <version>1.18.12</version>
    60. <scope>provided</scope>
    61. </dependency>
    62. </dependencies>
    63. </project>