Browse Source

blade-plugin-api增加打包跳过配置

test
smallchill 4 years ago
parent
commit
456dd73150
  1. 13
      blade-plugin-api/pom.xml

13
blade-plugin-api/pom.xml

@ -14,4 +14,17 @@
<version>2.8.1.RELEASE</version> <version>2.8.1.RELEASE</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
<finalName>${project.name}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</project> </project>

Loading…
Cancel
Save