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

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - Bypass Geo Redirect for specific directories -

php - .htaccess mod_rewrite for dynamic url which has domain names -