pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>com.cl.mbg</groupId>
  18. <artifactId>mbg</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. <scope>compile</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc</groupId>
  24. <artifactId>common</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. <scope>compile</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.lc</groupId>
  30. <artifactId>service</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.lc</groupId>
  35. <artifactId>dao</artifactId>
  36. <version>0.0.1-SNAPSHOT</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>