You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2020/09/01 04:56:07 UTC

[logging-site] branch asf-staging updated: Skip compile, jar, install, and deploy

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

rgoers pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/logging-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
     new 13e48e5  Skip compile, jar, install, and deploy
13e48e5 is described below

commit 13e48e57c7112da70e20f9fefa1d85eea6fe9ef5
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Mon Aug 31 21:55:45 2020 -0700

    Skip compile, jar, install, and deploy
---
 sources/pom.xml | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/sources/pom.xml b/sources/pom.xml
index 9840ef7..4ce4c47 100644
--- a/sources/pom.xml
+++ b/sources/pom.xml
@@ -5,6 +5,7 @@
     <groupId>org.apache.logging</groupId>
     <artifactId>logging-site</artifactId>
     <version>1.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
 
     <build>
         <finalName>logging-services-website</finalName>
@@ -62,9 +63,23 @@
                     </dependency>
 
                 </dependencies>
-                
             </plugin>
-
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-install-plugin</artifactId>
+                <version>2.5.2</version>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>2.8.2</version>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>