java-tutorials/spring-boot-modules/spring-boot-di/pom.xml

64 lines
2.2 KiB
XML
Raw Normal View History

<?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">
2019-12-05 09:56:52 -05:00
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-di</artifactId>
<name>spring-boot-di</name>
2022-01-10 11:35:47 -05:00
<packaging>jar</packaging>
<description>Module For Spring Boot DI</description>
2019-12-05 09:56:52 -05:00
<parent>
2020-07-07 07:18:10 -04:00
<groupId>com.baeldung.spring-boot-modules</groupId>
<artifactId>spring-boot-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
2019-12-05 09:56:52 -05:00
</parent>
2019-12-05 09:56:52 -05:00
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2019-12-05 09:56:52 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2019-12-05 09:56:52 -05:00
</dependencies>
2019-12-05 09:56:52 -05:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.baeldung.SpringBootDiApplication</mainClass>
<layout>JAR</layout>
</configuration>
</plugin>
</plugins>
</build>
2019-12-05 09:56:52 -05:00
<properties>
<start-class>com.baeldung.SpringBootDiApplication</start-class>
</properties>
</project>