spring-boot/spring-package-maven-plugin
Dave Syer 90c942387f Add basic READMEs 2013-07-19 17:36:22 +01:00
..
src Merge manifest in maven-plugin 2013-07-18 12:49:20 +01:00
README.md Add basic READMEs 2013-07-19 17:36:22 +01:00
pom.xml Add 'run' goal to spring-package-maven-plugin 2013-07-17 23:20:41 -07:00

README.md

Spring Package Maven Plugin

A maven plugin for building executable JAR and WAR files. To use it configure your project to build a JAR or WAR (as appropriate) in the normal way, using the maven-jar-plugin or maven-war-plugin, and then add the Spring plugin to your <build><plugins> section

pom.xml

<plugin>
    <groupId>org.springframework.zero</groupId>
    <artifactId>spring-package-maven-plugin</artifactId>
    <version>{{project.version}}</version>
    <executions>
	    <execution>
            <goals>
		        <goal>package</goal>
            </goals>
        </execution>
    </executions>
</plugin>