pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <parent>
  5. <groupId>com.fjs.scenic</groupId>
  6. <artifactId>fjs-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>fjs-scenic-mapper</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.fjs.scenic</groupId>
  13. <artifactId>fjs-scenic-common</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.fjs.scenic</groupId>
  18. <artifactId>fjs-scenic-entity</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </dependency>
  21. <!-- mybatis -->
  22. <dependency>
  23. <groupId>org.mybatis.spring.boot</groupId>
  24. <artifactId>mybatis-spring-boot-starter</artifactId>
  25. </dependency>
  26. <!--分页-->
  27. <dependency>
  28. <groupId>com.github.pagehelper</groupId>
  29. <artifactId>pagehelper</artifactId>
  30. <version>5.1.8</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.pagehelper</groupId>
  34. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  35. <version>1.2.3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.github.pagehelper</groupId>
  39. <artifactId>pagehelper-spring-boot-starter</artifactId>
  40. <version>1.2.3</version>
  41. </dependency>
  42. <!-- MYSQL包 -->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>