pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.baomidou</groupId>
  13. <artifactId>mybatis-plus-boot-starter</artifactId>
  14. <version>3.4.3</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.github.pagehelper</groupId>
  18. <artifactId>pagehelper-spring-boot-starter</artifactId>
  19. <version>1.3.1</version>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>org.mybatis</groupId>
  23. <artifactId>mybatis</artifactId>
  24. </exclusion>
  25. <exclusion>
  26. <groupId>org.mybatis</groupId>
  27. <artifactId>mybatis-spring</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fjs.scenic</groupId>
  33. <artifactId>fjs-scenic-common</artifactId>
  34. <version>0.0.1-SNAPSHOT</version>
  35. <exclusions>
  36. <exclusion>
  37. <artifactId>guava</artifactId>
  38. <groupId>com.google.guava</groupId>
  39. </exclusion>
  40. <exclusion>
  41. <artifactId>commons-io</artifactId>
  42. <groupId>commons-io</groupId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.fjs.scenic</groupId>
  48. <artifactId>fjs-scenic-entity</artifactId>
  49. <version>0.0.1-SNAPSHOT</version>
  50. </dependency>
  51. <!-- MYSQL包 -->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>