2020-03-15 04:51:11 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-13 13:15:35 -04:00
|
|
|
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-03-15 04:51:11 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-05-13 13:15:35 -04:00
|
|
|
<artifactId>spring-boot-basic-customization</artifactId>
|
|
|
|
<name>spring-boot-basic-customization</name>
|
2022-01-10 11:35:47 -05:00
|
|
|
<packaging>jar</packaging>
|
2021-05-13 13:15:35 -04:00
|
|
|
<description>Module For Spring Boot Basic Customization</description>
|
2020-03-15 04:51:11 -04:00
|
|
|
|
|
|
|
<parent>
|
2020-08-17 08:51:42 -04:00
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2020-03-15 04:51:11 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-03-15 11:24:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2020-03-15 04:51:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2020-03-15 11:55:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
2020-03-15 04:51:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-03-15 15:30:42 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- The main class to start by executing "java -jar" -->
|
|
|
|
<start-class>com.baeldung.changeport.CustomApplication</start-class>
|
|
|
|
</properties>
|
2021-05-13 13:15:35 -04:00
|
|
|
|
|
|
|
</project>
|