java - Enunciate Reporting - Error The 'assemble' goal requires 'war' packaging -
i getting error while running below command while generating enunciate report
mvn clean pre-site site:site site:stage -pskipquality -dskiptests=true -u
my pom.xml's enunciate plugin configuration below
<plugin> <groupid>org.codehaus.enunciate</groupid> <artifactid>maven-enunciate-plugin</artifactid> <version>1.27</version> <executions> <execution> <goals> <goal>assemble</goal> </goals> </execution> </executions> </plugin>
error - 'assemble' goal requires 'war' packaging
you have package project war:
<project> ... <packaging>war</packaging> ... </project>
Comments
Post a Comment