repackage skip

spring-boot 2018. 7. 18. 00:47


https://docs.spring.io/spring-boot/docs/current/maven-plugin/repackage-mojo.html#skip

https://stackoverflow.com/questions/35744908/using-bootrepackage-false-in-maven

<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>
            <configuration>
                <skip>true</skip><!-- or the result of a Maven/system property for example -->
            </configuration>
        </execution>
    </executions>
</plugin>


Posted by 張's blog
,