2022-06-16 03:28:07 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-07-15 00:29:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-11-23 18:13:52 -05: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">
|
2022-06-16 03:28:07 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-boot-data-3</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-boot-data-3</name>
|
|
|
|
<description>spring-boot-data-3</description>
|
2022-07-15 00:29:54 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2022-06-16 03:28:07 -04:00
|
|
|
<dependencies>
|
2024-02-09 03:32:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.hypersistence</groupId>
|
|
|
|
<artifactId>hypersistence-utils-hibernate-55</artifactId>
|
|
|
|
<version>3.7.1</version>
|
|
|
|
</dependency>
|
2022-06-16 03:28:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-11 15:08:05 -04:00
|
|
|
<groupId>com.amazonaws.secretsmanager</groupId>
|
|
|
|
<artifactId>aws-secretsmanager-jdbc</artifactId>
|
2023-09-03 02:18:10 -04:00
|
|
|
<version>${aws-secretsmanager-jdbc.version}</version>
|
2023-04-11 15:08:05 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-20 23:48:43 -05:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2022-06-16 03:28:07 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2023-04-16 12:32:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
</dependency>
|
2022-06-16 03:28:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-04-11 15:08:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.awspring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-aws-secrets-manager-config</artifactId>
|
2023-09-03 02:18:10 -04:00
|
|
|
<version>${spring-cloud-starter-aws-secrets-manager-config.version}</version>
|
2023-04-11 15:08:05 -04:00
|
|
|
</dependency>
|
2022-06-16 03:28:07 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-04-11 15:08:05 -04:00
|
|
|
<properties>
|
2023-09-03 02:18:10 -04:00
|
|
|
<spring-cloud-starter-aws-secrets-manager-config.version>2.4.4</spring-cloud-starter-aws-secrets-manager-config.version>
|
|
|
|
<aws-secretsmanager-jdbc.version>1.0.11</aws-secretsmanager-jdbc.version>
|
2024-02-26 20:49:02 -05:00
|
|
|
<start-class>com.baeldung.startwithoutdb.StartWithoutDbApplication</start-class>
|
2023-04-11 15:08:05 -04:00
|
|
|
</properties>
|
|
|
|
|
2022-07-15 00:29:54 -04:00
|
|
|
</project>
|