You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by dk...@apache.org on 2019/11/07 20:15:43 UTC

[ws-parent] 02/18: Configured defaults to be able to use maven-scm-publish-plugin to publish Maven sites.

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

dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-parent.git

commit 3657de9b0d0a22caff3b5c3bd582162c26531e87
Author: veithen <ve...@13f79535-47bb-0310-9956-ffa450edef68>
AuthorDate: Mon Apr 22 18:14:06 2013 +0000

    Configured defaults to be able to use maven-scm-publish-plugin to publish Maven sites.
---
 pom.xml | 38 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f4d71bf..d8e6420 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,4 +57,40 @@
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/parent/trunk</developerConnection>
         <url>http://svn.apache.org/viewvc/webservices/parent/trunk</url>
     </scm>
-</project>  
\ No newline at end of file
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.9</version>
+                    <configuration>
+                        <breakiterator>true</breakiterator>
+                        <!-- The notimestamp, windowtitle and bottom parameters are chosen to minimize the number
+                             of changes between releases (to avoid mass changes when committing the site for a new release) -->
+                        <notimestamp>true</notimestamp>
+                        <windowtitle>${project.name} API</windowtitle>
+                        <bottom>Copyright &#169; {organizationName}. All Rights Reserved.</bottom>
+                        <!-- doctitle only appears in the summary and we should include the version there -->
+                        <doctitle>${project.name} ${project.version} API</doctitle>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>3.2</version>
+                <configuration>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-scm-publish-plugin</artifactId>
+                <version>1.0-beta-2</version>
+            </plugin>
+        </plugins>
+    </build>
+</project>