2024-05-22 19:43:12 +02: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"
|
|
|
|
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>
|
2024-05-27 17:22:09 +02:00
|
|
|
<groupId>com.learningpulse</groupId>
|
|
|
|
<artifactId>server</artifactId>
|
|
|
|
<version>0.0.1</version>
|
2024-05-22 19:43:12 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>dummy</artifactId>
|
2024-05-27 17:22:09 +02:00
|
|
|
<version>0.0.1</version>
|
2024-05-22 19:43:12 +02:00
|
|
|
<name>dummy</name>
|
2024-05-27 17:22:09 +02:00
|
|
|
<description>A dummy project</description>
|
2024-05-22 19:43:12 +02:00
|
|
|
<properties>
|
|
|
|
</properties>
|
2024-05-27 17:22:09 +02:00
|
|
|
|
2024-05-22 19:43:12 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2024-05-27 17:22:09 +02:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2024-05-22 19:43:12 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2024-05-27 17:22:09 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-config-server</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-06-01 16:34:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
<version>2.5.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2024-05-27 17:22:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<scope>runtime</scope>
|
2024-05-22 19:43:12 +02:00
|
|
|
</dependency>
|
2024-06-01 16:34:37 +02:00
|
|
|
|
2024-05-22 19:43:12 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|