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

60 lines
2.2 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>HelloWorld</artifactId>
<packaging>jar</packaging>
<name>HelloWorld</name>
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>
2018-07-12 12:34:54 +05:30
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>
</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
2017-05-12 20:32:54 +02:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
2018-07-12 12:34:54 +05:30
2017-04-07 12:47:33 +05:00
</project>