2021-12-22 16:24:24 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-di-3</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>spring-di-3</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2023-11-01 07:00:50 -04:00
|
|
|
<artifactId>parent-spring-6</artifactId>
|
2021-12-22 16:24:24 -05:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-11-01 07:00:50 -04:00
|
|
|
<relativePath>../parent-spring-6</relativePath>
|
2021-12-22 16:24:24 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-02-22 11:23:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-bom</artifactId>
|
|
|
|
<version>${log4j2.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
2021-12-22 16:24:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2023-11-01 07:00:50 -04:00
|
|
|
<spring-boot.version>3.1.2</spring-boot.version>
|
2022-02-22 11:23:39 -05:00
|
|
|
<log4j2.version>2.17.1</log4j2.version>
|
2023-11-01 07:00:50 -04:00
|
|
|
<org.slf4j.version>2.0.9</org.slf4j.version>
|
|
|
|
<logback.version>1.4.11</logback.version>
|
2021-12-22 16:24:24 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|