Advertisement
Guest User

/spring-boot-microservice-forex-service/pom.xml

a guest
Jan 23rd, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  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.  
  6. <groupId>com.in28minutes.springboot.microservice.example.forex</groupId>
  7. <artifactId>spring-boot-microservice-forex-service</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>spring-boot-microservice-forex-service</name>
  12. <description>Microservices with Spring Boot and Spring Cloud - Forex Service</description>
  13.  
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.0.0.RELEASE</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20.  
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. <spring-cloud.version>Finchley.M8</spring-cloud.version>
  26. </properties>
  27.  
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-jpa</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37.  
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-devtools</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.h2database</groupId>
  45. <artifactId>h2</artifactId>
  46. <scope>runtime</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54.  
  55. <dependencyManagement>
  56. <dependencies>
  57. <dependency>
  58. <groupId>org.springframework.cloud</groupId>
  59. <artifactId>spring-cloud-dependencies</artifactId>
  60. <version>${spring-cloud.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. </dependencies>
  65. </dependencyManagement>
  66.  
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. </build>
  75.  
  76. <repositories>
  77. <repository>
  78. <id>spring-snapshots</id>
  79. <name>Spring Snapshots</name>
  80. <url>https://repo.spring.io/snapshot</url>
  81. <snapshots>
  82. <enabled>true</enabled>
  83. </snapshots>
  84. </repository>
  85. <repository>
  86. <id>spring-milestones</id>
  87. <name>Spring Milestones</name>
  88. <url>https://repo.spring.io/milestone</url>
  89. <snapshots>
  90. <enabled>false</enabled>
  91. </snapshots>
  92. </repository>
  93. </repositories>
  94.  
  95. <pluginRepositories>
  96. <pluginRepository>
  97. <id>spring-snapshots</id>
  98. <name>Spring Snapshots</name>
  99. <url>https://repo.spring.io/snapshot</url>
  100. <snapshots>
  101. <enabled>true</enabled>
  102. </snapshots>
  103. </pluginRepository>
  104. <pluginRepository>
  105. <id>spring-milestones</id>
  106. <name>Spring Milestones</name>
  107. <url>https://repo.spring.io/milestone</url>
  108. <snapshots>
  109. <enabled>false</enabled>
  110. </snapshots>
  111. </pluginRepository>
  112. </pluginRepositories>
  113.  
  114. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement