You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/11/17 11:39:54 UTC

svn commit: r1770169 - /maven/site/trunk/pom.xml

Author: hboutemy
Date: Thu Nov 17 11:39:54 2016
New Revision: 1770169

URL: http://svn.apache.org/viewvc?rev=1770169&view=rev
Log:
avoid failure when rebuilding site without cleaning: don't add site.jar to site.jar

Modified:
    maven/site/trunk/pom.xml

Modified: maven/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/pom.xml?rev=1770169&r1=1770168&r2=1770169&view=diff
==============================================================================
--- maven/site/trunk/pom.xml (original)
+++ maven/site/trunk/pom.xml Thu Nov 17 11:39:54 2016
@@ -165,6 +165,9 @@
             </goals>
             <configuration>
               <jarOutputDirectory>${project.reporting.outputDirectory}</jarOutputDirectory>
+              <archiveExcludes>
+                <archiveExclude>*.jar</archiveExclude>
+              </archiveExcludes>
             </configuration>
           </execution>
         </executions>