pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.wsm</groupId>
  6. <artifactId>wsm-admin-dao</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <name>wsm-admin-dao</name>
  10. <description>wsm-admin-dao project</description>
  11. <parent>
  12. <groupId>com.wsm</groupId>
  13. <artifactId>wsm-base</artifactId>
  14. <version>1.0.0</version>
  15. <relativePath>../pom.xml</relativePath>
  16. </parent>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.wsm</groupId>
  20. <artifactId>wsm-common</artifactId>
  21. </dependency>
  22. <!-- JPA -->
  23. <!--<dependency>-->
  24. <!--<groupId>org.springframework.boot</groupId>-->
  25. <!--<artifactId>spring-boot-starter-data-jpa</artifactId>-->
  26. <!--<exclusions>-->
  27. <!--<exclusion>-->
  28. <!--<groupId>javax.persistence</groupId>-->
  29. <!--<artifactId>persistence-api</artifactId>-->
  30. <!--</exclusion>-->
  31. <!--</exclusions>-->
  32. <!--</dependency>-->
  33. <!-- mybatis -->
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>tk.mybatis</groupId>
  40. <artifactId>mapper-spring-boot-starter</artifactId>
  41. <!-- tk.mybatis 跟springboot jap 包冲突-->
  42. <exclusions>
  43. <exclusion>
  44. <groupId>javax.persistence</groupId>
  45. <artifactId>persistence-api</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <!-- mysql -->
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <scope>runtime</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid</artifactId>
  58. </dependency>
  59. </dependencies>
  60. </project>