2019-12-08 15:39:07 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 07:44:43 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 08:52:24 -04:00
|
|
|
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>
|
2021-05-06 07:44:43 -04:00
|
|
|
<artifactId>aws-reactive</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>aws-reactive</name>
|
|
|
|
<description>AWS Reactive Sample</description>
|
2020-03-15 08:52:24 -04:00
|
|
|
|
2019-12-08 15:39:07 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-04-19 13:09:54 -04:00
|
|
|
<artifactId>aws-modules</artifactId>
|
2019-12-08 15:39:07 -05:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<!-- Import dependency management from Spring Boot -->
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
|
|
<artifactId>bom</artifactId>
|
|
|
|
<version>${awssdk.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-12-08 15:39:07 -05:00
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
|
|
<artifactId>s3</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<artifactId>netty-nio-client</artifactId>
|
|
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-02-15 09:51:33 -05:00
|
|
|
<version>${lombok.version}</version>
|
2020-03-15 08:52:24 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-12-08 15:39:07 -05:00
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-12-08 15:39:07 -05:00
|
|
|
|
2020-03-21 21:54:38 -04:00
|
|
|
<properties>
|
|
|
|
<spring.version>2.2.1.RELEASE</spring.version>
|
2022-10-10 15:13:14 -04:00
|
|
|
<awssdk.version>2.17.283</awssdk.version>
|
2023-02-15 09:51:33 -05:00
|
|
|
<lombok.version>1.18.20</lombok.version>
|
2020-03-21 21:54:38 -04:00
|
|
|
</properties>
|
2021-09-19 14:34:26 -04:00
|
|
|
|
2021-05-06 07:44:43 -04:00
|
|
|
</project>
|