pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>admin</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>admin</name>
  14. <description>admin</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-security</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.cl.mbg</groupId>
  22. <artifactId>mbg</artifactId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.lc</groupId>
  28. <artifactId>common</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.lc</groupId>
  34. <artifactId>service</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.lc</groupId>
  39. <artifactId>dao</artifactId>
  40. <version>0.0.1-SNAPSHOT</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.lc</groupId>
  45. <artifactId>xxl-job-core</artifactId>
  46. <version>0.0.1-SNAPSHOT</version>
  47. </dependency>
  48. </dependencies>
  49. </project>