2021-12-12 06:51:57 -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-boot-annotations-2</artifactId>
|
|
|
|
<name>spring-boot-annotations-2</name>
|
2022-01-10 11:35:47 -05:00
|
|
|
<packaging>war</packaging>
|
2021-12-12 06:51:57 -05:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-inline</artifactId>
|
2024-03-17 10:14:47 -04:00
|
|
|
<version>${mockito-inline.version}</version>
|
2021-12-12 06:51:57 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-03-26 14:25:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-03-17 10:14:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2021-12-12 06:51:57 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2024-03-17 10:14:47 -04:00
|
|
|
<properties>
|
|
|
|
<mockito-inline.version>5.2.0</mockito-inline.version>
|
|
|
|
<start-class>com.baeldung.springbootconfiguration.Application</start-class>
|
|
|
|
</properties>
|
|
|
|
|
2021-12-12 06:51:57 -05:00
|
|
|
</project>
|