2020-05-17 12:59:16 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-13 22:47:40 +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">
|
2020-05-17 12:59:16 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-05-13 22:47:40 +05:30
|
|
|
<artifactId>spring-boot-properties-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-boot-properties-2</name>
|
2022-01-10 22:05:47 +05:30
|
|
|
<packaging>jar</packaging>
|
2021-05-13 22:47:40 +05:30
|
|
|
<description>Spring Boot Properties Module</description>
|
2020-07-08 05:00:05 +02:00
|
|
|
|
|
|
|
<parent>
|
2023-04-13 16:18:11 +03:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-3</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-boot-3</relativePath>
|
2020-07-08 05:00:05 +02:00
|
|
|
</parent>
|
|
|
|
|
2020-05-17 12:59:16 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2023-05-30 16:45:42 +02:00
|
|
|
<version>${spring-boot.version}</version>
|
2020-05-17 12:59:16 +02:00
|
|
|
</dependency>
|
2020-05-20 13:36:48 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2023-05-30 16:45:42 +02:00
|
|
|
<version>${spring-boot.version}</version>
|
2020-05-20 13:36:48 +02:00
|
|
|
</dependency>
|
2023-04-13 16:18:11 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
2020-05-17 12:59:16 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2023-04-13 16:18:11 +03:00
|
|
|
<properties>
|
|
|
|
<start-class>com.baeldung.properties.yaml.YamlApplication</start-class>
|
2023-05-30 16:45:42 +02:00
|
|
|
<spring-boot.version>3.1.0</spring-boot.version>
|
2023-04-13 16:18:11 +03:00
|
|
|
</properties>
|
|
|
|
|
2021-05-13 22:47:40 +05:30
|
|
|
</project>
|