2016-09-02 02:30:14 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-04-26 08:37:47 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-09-02 02:30:14 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2017-01-31 01:07:09 -05:00
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>svc-book</artifactId>
|
2016-09-02 02:30:14 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2018-11-30 11:46:08 -05:00
|
|
|
<name>svc-book</name>
|
2016-09-02 02:30:14 -04:00
|
|
|
|
2016-09-05 19:40:29 -04:00
|
|
|
<parent>
|
2018-06-08 14:04:03 -04:00
|
|
|
<artifactId>parent-boot-1</artifactId>
|
2017-05-14 12:01:35 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-08 14:04:03 -04:00
|
|
|
<relativePath>../../../parent-boot-1</relativePath>
|
2016-09-05 19:40:29 -04:00
|
|
|
</parent>
|
|
|
|
|
2016-09-02 02:30:14 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-eureka</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2016-10-18 20:44:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
<artifactId>spring-session</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2017-02-11 13:52:16 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2017-02-12 17:55:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-zipkin</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2016-09-02 02:30:14 -04:00
|
|
|
</dependencies>
|
2016-09-05 19:40:29 -04:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
2016-12-08 17:16:17 -05:00
|
|
|
<version>${spring-cloud-dependencies.version}</version>
|
2016-09-05 19:40:29 -04:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2016-12-08 17:16:17 -05:00
|
|
|
<properties>
|
|
|
|
<spring-cloud-dependencies.version>Brixton.SR7</spring-cloud-dependencies.version>
|
2016-12-15 09:13:50 -05:00
|
|
|
</properties>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2016-09-02 02:30:14 -04:00
|
|
|
</project>
|