我使用带有多模块poms的Spring boot 1.5.3,其中父pom将maven包装为pom,而子pom将类打包在war文件中。
是否可以运行maven目标 Stopwatch sw = new Stopwatch();
sw.Start();
Thread.Sleep(10382);
sw.Stop();
Console.Write(sw.Elapsed.Duration());
来排除repackage
目标中包含的资源?
答案 0 :(得分:0)
试试这个:
<build>
...
<plugins>
...
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.6.RELEASE</version>
<configuration>
<addResources>false</addResources>
</configuration>
</plugin>
...
</plugins>
...
</build>
请参阅文档here。