У меня есть проект с текущей файловой структурой, как (Это прекрасно работает):
project-services
- src/main/java
- WebContent
- pom.xml
project-services pom.xml
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
...
Я должен переместить WebContent of в проект-services для проецирования-UI как:
project-services
- src/main/java
- pom.xml
project-ui
- pom.xml
- WebContent
Теперь я должен построить войну, включая WebContent
из project-ui
в project-services
.
Какие изменения я должен сделать в project-services's pom.xml
работать как было раньше?