pom.xml 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  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-spring-boot-starter</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>directory-web-client-spring-boot-starter</name>
  10. <description>Demo project for Spring Boot</description>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. </properties>
  15. <parent> <!-- <1> -->
  16. <groupId>io.pivotal.workshop</groupId>
  17. <artifactId>directory-web-client</artifactId>
  18. <version>0.0.1-SNAPSHOT</version>
  19. <relativePath>..</relativePath>
  20. </parent>
  21. <dependencies>
  22. <dependency>
  23. <groupId>io.pivotal.workshop</groupId> <!-- <2> -->
  24. <artifactId>directory-web-client-spring-boot-autoconfigure</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. </dependency>
  27. </dependencies>
  28. </project>