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 bi...@apache.org on 2020/04/14 20:01:44 UTC

[axis-axis2-java-core] 12/12: Merge r1735371 to the 1.6 branch.

This is an automated email from the ASF dual-hosted git repository.

billblough pushed a commit to branch 1_6
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git

commit 9891c6ff2820f0e633bc8c3ae930ca1ba1c43ea9
Author: Andreas Veithen <ve...@apache.org>
AuthorDate: Thu Mar 17 07:54:34 2016 +0000

    Merge r1735371 to the 1.6 branch.
---
 modules/adb-tests/pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/modules/adb-tests/pom.xml b/modules/adb-tests/pom.xml
index 36722f4..671b54a 100644
--- a/modules/adb-tests/pom.xml
+++ b/modules/adb-tests/pom.xml
@@ -232,6 +232,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>