2020-07-11 22:34:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-09-21 19:08:21 -04:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-07-11 22:34:36 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-05-08 07:06:25 -04:00
|
|
|
<artifactId>docker-spring-boot</artifactId>
|
|
|
|
<name>docker-spring-boot</name>
|
|
|
|
<description>Demo project showing Spring Boot and Docker</description>
|
|
|
|
|
2022-07-15 00:29:54 -04:00
|
|
|
<parent>
|
2022-06-30 09:57:04 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-boot-2</relativePath>
|
2020-07-11 22:34:36 -04:00
|
|
|
</parent>
|
2020-09-21 19:08:21 -04:00
|
|
|
|
2020-07-11 22:34:36 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2020-09-21 19:08:21 -04:00
|
|
|
<dependency>
|
2020-07-11 22:34:36 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<layers>
|
|
|
|
<enabled>true</enabled>
|
2020-09-14 17:58:12 -04:00
|
|
|
<configuration>${project.basedir}/src/layers.xml</configuration>
|
2020-07-11 22:34:36 -04:00
|
|
|
</layers>
|
|
|
|
</configuration>
|
2022-05-23 16:01:34 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2020-07-11 22:34:36 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-05-08 07:06:25 -04:00
|
|
|
</project>
|