230 lines
7.1 KiB
XML
230 lines
7.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<artifactId>hydro-api</artifactId>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<artifactId>lombok</artifactId>
|
|
<groupId>org.projectlombok</groupId>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
<groupId>org.graalvm.buildtools</groupId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>
|
|
<artifactId>lombok</artifactId>
|
|
<groupId>org.projectlombok</groupId>
|
|
</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>springdoc-openapi-maven-plugin</artifactId>
|
|
<configuration>
|
|
<apiDocsUrl>http://localhost:8080/v3/api-docs</apiDocsUrl>
|
|
<outputDir>${project.build.directory}</outputDir>
|
|
<outputFileName>openapi.json</outputFileName>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<id>integration-test</id>
|
|
</execution>
|
|
</executions>
|
|
<groupId>org.springdoc</groupId>
|
|
<version>1.5</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-webmvc</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-cloud-starter-vault-config</artifactId>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-modulith-starter-core</artifactId>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-modulith-starter-jdbc</artifactId>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-modulith-starter-test</artifactId>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>postgresql</artifactId>
|
|
<groupId>org.postgresql</groupId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>lombok</artifactId>
|
|
<groupId>org.projectlombok</groupId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-security-test</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-webmvc-test</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-modulith-starter-test</artifactId>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-modulith-events-amqp</artifactId>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>rest-assured</artifactId>
|
|
<groupId>io.rest-assured</groupId>
|
|
<scope>test</scope>
|
|
<version>6.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>hamcrest</artifactId>
|
|
<groupId>org.hamcrest</groupId>
|
|
<scope>test</scope>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>jackson-core</artifactId>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<version>2.20.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>java-jwt</artifactId>
|
|
<groupId>com.auth0</groupId>
|
|
<scope>compile</scope>
|
|
<version>4.5.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
<groupId>org.springdoc</groupId>
|
|
<scope>compile</scope>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
<scope>compile</scope>
|
|
<version>2.2.41</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-rabbit-test</artifactId>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>h2</artifactId>
|
|
<groupId>com.h2database</groupId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<scope>import</scope>
|
|
<type>pom</type>
|
|
<version>${spring-cloud.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-modulith-bom</artifactId>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<scope>import</scope>
|
|
<type>pom</type>
|
|
<version>${spring-modulith.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<description>Hydro API</description>
|
|
<developers>
|
|
<developer/>
|
|
</developers>
|
|
<groupId>dev.ivfrost</groupId>
|
|
<licenses>
|
|
<license/>
|
|
</licenses>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<name>hydro-api</name>
|
|
<parent>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<relativePath/>
|
|
<version>4.0.1</version> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<properties>
|
|
<java.version>21</java.version>
|
|
<spring-cloud.version>2025.1.0</spring-cloud.version>
|
|
<spring-modulith.version>2.0.1</spring-modulith.version>
|
|
</properties>
|
|
<scm>
|
|
<connection/>
|
|
<developerConnection/>
|
|
<tag/>
|
|
<url/>
|
|
</scm>
|
|
<url/>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</project>
|