pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hosea.cloud.user</groupId>
  7. <artifactId>service-user</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>user-start</artifactId>
  11. <name>Start ${version}</name>
  12. <description>启动</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.hosea.cloud.user</groupId>
  16. <artifactId>service-user-adapter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.hosea.cloud.user</groupId>
  20. <artifactId>service-user-infrastructure</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.hosea.cloud</groupId>
  24. <artifactId>cloud-nacos</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.hosea.cloud</groupId>
  28. <artifactId>cloud-admin-client</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.hosea.cloud</groupId>
  32. <artifactId>cloud-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>