2019-10-31 20:43:47 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-14 17:43:24 +05:30
|
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 20:43:47 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-aws</artifactId>
|
|
|
|
<name>spring-cloud-aws</name>
|
|
|
|
<packaging>jar</packaging>
|
2019-12-05 16:56:52 +02:00
|
|
|
<description>Spring Cloud AWS Examples</description>
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
<parent>
|
2022-01-19 13:30:42 +05:30
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
2022-05-29 19:32:17 +05:30
|
|
|
<artifactId>spring-cloud-modules</artifactId>
|
2022-01-19 13:30:42 +05:30
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-10-31 20:43:47 -05:00
|
|
|
</parent>
|
|
|
|
|
2021-09-20 00:04:26 +05:30
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-11-18 00:26:06 +05:30
|
|
|
<!-- for junit5 to successfully be able to discover junit4 tests, we need 4.12+ version of -->
|
|
|
|
<!-- junit:junit in the classpath. hence forcing the latest 4.13.2 available version -->
|
|
|
|
<!-- for junit5 compatibility -->
|
2021-10-29 09:37:04 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit-bom</artifactId>
|
|
|
|
<version>${junit-jupiter.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2021-09-20 00:04:26 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-aws</artifactId>
|
|
|
|
<version>${spring-cloud}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2019-10-31 20:43:47 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-aws</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-aws-jdbc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-aws-messaging</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
</dependency>
|
2020-05-04 20:36:20 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
2019-10-31 20:43:47 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<start-class>com.baeldung.spring.cloud.aws.SpringCloudAwsApplication</start-class>
|
|
|
|
<spring-cloud.version>Dalston.SR4</spring-cloud.version>
|
2020-05-04 20:36:20 +05:30
|
|
|
<spring-cloud>2.2.1.RELEASE</spring-cloud>
|
2019-10-31 20:43:47 -05:00
|
|
|
</properties>
|
2021-05-14 17:43:24 +05:30
|
|
|
|
|
|
|
</project>
|