ContainerSolutions / mesos-starter

Home Page:https://container-solutions.com/mesos-starter/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Make bootRepackage part of the standard Maven package

philwinder opened this issue · comments

See https://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html

<build>
  ...
  <plugins>
    ...
    <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <version>1.3.2.RELEASE</version>
      <executions>
        <execution>
          <goals>
            <goal>repackage</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
    ...
  </plugins>
  ...
</build>

… For the sample application

My misunderstanding. I thought this could be included in mesos-starter.