2017-02-14 20:20:28 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-04-26 08:37:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>mesos-marathon</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-11-30 11:46:08 -05:00
|
|
|
<name>mesos-marathon</name>
|
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<parent>
|
2018-06-08 14:04:03 -04:00
|
|
|
<artifactId>parent-boot-1</artifactId>
|
2018-04-26 08:37:47 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-08 14:04:03 -04:00
|
|
|
<relativePath>../parent-boot-1</relativePath>
|
2018-04-26 08:37:47 -04:00
|
|
|
</parent>
|
2017-02-14 20:20:28 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-02-14 20:20:28 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-02-14 20:20:28 -05:00
|
|
|
|
|
|
|
</project>
|