2021-10-29 19:18:37 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-08 07:06:25 -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">
|
2021-11-05 08:24:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-07-01 09:55:58 -04:00
|
|
|
<artifactId>docker-compose</artifactId>
|
2022-05-08 07:06:25 -04:00
|
|
|
<description>Demo project for 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>
|
2021-11-05 08:24:28 -04:00
|
|
|
</parent>
|
2021-10-29 19:18:37 -04:00
|
|
|
|
2021-11-05 08:24:28 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</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-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-10-29 19:18:37 -04:00
|
|
|
|
2021-11-05 08:24:28 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2022-07-16 11:37:07 -04:00
|
|
|
<configuration>
|
|
|
|
<mainClass>com.baeldung.docker.app.DockAppApplication</mainClass>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2021-11-05 08:24:28 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-10-29 19:18:37 -04:00
|
|
|
|
2022-05-08 07:06:25 -04:00
|
|
|
</project>
|