You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2016/03/17 08:53:48 UTC

svn commit: r1735371 - /axis/axis2/java/core/branches/1_7/modules/adb-tests/pom.xml

Author: veithen
Date: Thu Mar 17 07:53:48 2016
New Revision: 1735371

URL: http://svn.apache.org/viewvc?rev=1735371&view=rev
Log:
Fix build failure (specific to the 1.7 branch) that occurs when the apache-release profile is active.

Modified:
    axis/axis2/java/core/branches/1_7/modules/adb-tests/pom.xml

Modified: axis/axis2/java/core/branches/1_7/modules/adb-tests/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_7/modules/adb-tests/pom.xml?rev=1735371&r1=1735370&r2=1735371&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_7/modules/adb-tests/pom.xml (original)
+++ axis/axis2/java/core/branches/1_7/modules/adb-tests/pom.xml Thu Mar 17 07:53:48 2016
@@ -231,6 +231,21 @@
                     <skip>true</skip>
                 </configuration>
             </plugin>
+            <plugin>
+                <!-- Disable the Javadoc execution configured by the apache-release profile.
+                     The wsdl2code goal adds sources as project source, not project test sources,
+                     and that causes problems. Note that we don't need the Javadocs anyway. -->
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-javadocs</id>
+                        <phase>none</phase>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 </project>