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>
'spring-boot' 카테고리의 다른 글
spring-boot-starter-actuator (모니터링) (0) | 2020.01.29 |
---|---|
spring boot에서 filter 사용하기 (0) | 2020.01.14 |
spring boot auto reload (0) | 2020.01.03 |
Gradle doesn't run because it can't find tools.jar in JRE (0) | 2019.07.13 |
spring boot war without tomcat embedded (0) | 2018.07.17 |