2022-05-05 18:53:59 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-20 01:02:38 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2022-05-05 18:53:59 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-07-01 09:55:58 -04:00
|
|
|
<artifactId>docker-images</artifactId>
|
|
|
|
<description>Example application to showcase Docker images features</description>
|
2022-05-20 01:02:38 -04:00
|
|
|
|
2022-05-05 18:53:59 -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>
|
2022-05-05 18:53:59 -04:00
|
|
|
</parent>
|
2022-05-20 01:02:38 -04:00
|
|
|
|
2022-05-05 18:53:59 -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>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-05-20 01:02:38 -04:00
|
|
|
</project>
|