目前用的【maven-war-plugin】插件将多个war合并,但是合并以后就不能用【tomcat8-maven-plugin】的Alias属性给每个war设置不同的域名了。
怎样才能在多个war模块的maven项目中给每个war模块设置不同的域名呢?
`<plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<overlays>
<overlay>
<groupId>${project.groupId}</groupId>
<artifactId>dekingCloudApi</artifactId>
</overlay>
</overlays>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>`
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…