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 2012/10/04 22:26:22 UTC

svn commit: r1394249 - /axis/axis1/java/trunk/interop-mock/pom.xml

Author: veithen
Date: Thu Oct  4 20:26:21 2012
New Revision: 1394249

URL: http://svn.apache.org/viewvc?rev=1394249&view=rev
Log:
Don't generate Javadoc JAR for interop-mock.

Modified:
    axis/axis1/java/trunk/interop-mock/pom.xml

Modified: axis/axis1/java/trunk/interop-mock/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/interop-mock/pom.xml?rev=1394249&r1=1394248&r2=1394249&view=diff
==============================================================================
--- axis/axis1/java/trunk/interop-mock/pom.xml (original)
+++ axis/axis1/java/trunk/interop-mock/pom.xml Thu Oct  4 20:26:21 2012
@@ -101,4 +101,28 @@
             </plugin>
         </plugins>
     </build>
+    <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <!-- Don't generate Javadoc JAR since we don't deploy it anyway -->
+                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-javadocs</id>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                                <configuration>
+                                    <skip>true</skip>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>