27 lines
921 B
XML
27 lines
921 B
XML
<?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"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.learningpulse</groupId>
|
|
<artifactId>server</artifactId>
|
|
<version>0.0.1</version>
|
|
</parent>
|
|
<artifactId>eureka</artifactId>
|
|
<version>0.0.1</version>
|
|
<name>eureka</name>
|
|
<description>Eureka discovery server for LearningPulse</description>
|
|
<properties>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
|
|
<version>4.1.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|