pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.cl.travel</groupId>
  7. <artifactId>travel</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.lc</groupId>
  11. <artifactId>service</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>service</name>
  14. <description>service</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.cl.mbg</groupId>
  18. <artifactId>mbg</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.lc</groupId>
  23. <artifactId>common</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.pagehelper</groupId>
  28. <artifactId>pagehelper-spring-boot-starter</artifactId>
  29. <version>1.3.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lc</groupId>
  33. <artifactId>dao</artifactId>
  34. <version>0.0.1-SNAPSHOT</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>