pom.xml 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.pivotal.workshop</groupId>
  6. <artifactId>directory-web-client</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>directory-web-client</name>
  10. <modules>
  11. <module>directory-web-client-spring-boot-autoconfigure</module>
  12. <module>directory-web-client-spring-boot-starter</module>
  13. <module>demo-starter</module>
  14. </modules>
  15. <dependencyManagement>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-dependencies</artifactId>
  20. <version>2.0.0.M7</version>
  21. <type>pom</type>
  22. <scope>import</scope>
  23. </dependency>
  24. </dependencies>
  25. </dependencyManagement>
  26. <repositories>
  27. <repository>
  28. <id>spring-snapshots</id>
  29. <name>Spring Snapshots</name>
  30. <url>https://repo.spring.io/snapshot</url>
  31. <snapshots>
  32. <enabled>true</enabled>
  33. </snapshots>
  34. </repository>
  35. <repository>
  36. <id>spring-milestones</id>
  37. <name>Spring Milestones</name>
  38. <url>https://repo.spring.io/milestone</url>
  39. <snapshots>
  40. <enabled>false</enabled>
  41. </snapshots>
  42. </repository>
  43. </repositories>
  44. <pluginRepositories>
  45. <pluginRepository>
  46. <id>spring-snapshots</id>
  47. <name>Spring Snapshots</name>
  48. <url>https://repo.spring.io/snapshot</url>
  49. <snapshots>
  50. <enabled>true</enabled>
  51. </snapshots>
  52. </pluginRepository>
  53. <pluginRepository>
  54. <id>spring-milestones</id>
  55. <name>Spring Milestones</name>
  56. <url>https://repo.spring.io/milestone</url>
  57. <snapshots>
  58. <enabled>false</enabled>
  59. </snapshots>
  60. </pluginRepository>
  61. </pluginRepositories>
  62. </project>