Files
java-tutorials/spring-cloud/spring-cloud-zookeeper/Greeting/pom.xml
T

72 lines
2.8 KiB
XML
Raw Normal View History

2017-04-07 12:47:33 +05:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-07-12 12:34:54 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2017-05-12 20:32:54 +02:00
<modelVersion>4.0.0</modelVersion>
2018-07-12 12:34:54 +05:30
<artifactId>Greeting</artifactId>
<name>Greeting</name>
2019-02-10 01:47:19 +05:30
<packaging>jar</packaging>
2017-05-14 18:01:35 +02:00
2017-05-12 20:32:54 +02:00
<parent>
<groupId>com.baeldung.spring.cloud</groupId>
<artifactId>spring-cloud-zookeeper</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2017-05-14 18:01:35 +02:00
2017-05-12 20:32:54 +02:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
2018-07-12 12:34:54 +05:30
<version>${spring-boot.version}</version>
2017-05-12 20:32:54 +02:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
2018-07-12 12:34:54 +05:30
<version>${springframework.version}</version>
2017-05-12 20:32:54 +02:00
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
2018-07-12 12:34:54 +05:30
<version>${spring-cloud-starter-zookeeper-discovery.version}</version>
2017-05-12 20:32:54 +02:00
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
2018-07-12 12:34:54 +05:30
<version>${spring-boot.version}</version>
2017-05-12 20:32:54 +02:00
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
2018-07-12 12:34:54 +05:30
<version>${spring-cloud-starter-feign.version}</version>
2017-05-12 20:32:54 +02:00
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
2018-07-12 12:34:54 +05:30
<version>${hamcrest.version}</version>
2017-05-12 20:32:54 +02:00
<scope>test</scope>
</dependency>
</dependencies>
2017-04-07 12:47:33 +05:00
2017-05-12 20:32:54 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId> <!--changed -->
2018-07-12 12:34:54 +05:30
<version>${spring-cloud-dependencies.version}</version> <!--changed -->
2017-05-12 20:32:54 +02:00
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2017-04-07 12:47:33 +05:00
2018-07-12 12:34:54 +05:30
<properties>
<spring-cloud-starter-feign.version>1.2.5.RELEASE</spring-cloud-starter-feign.version>
<hamcrest.version>1.3</hamcrest.version>
</properties>
2018-04-26 18:07:47 +05:30
2017-04-07 12:47:33 +05:00
</project>