You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by rg...@apache.org on 2022/06/03 15:20:46 UTC

[flume] branch flume-1.10.0 updated: Use Apache parent repository defn. Disable deploying unnecessary modules

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

rgoers pushed a commit to branch flume-1.10.0
in repository https://gitbox.apache.org/repos/asf/flume.git


The following commit(s) were added to refs/heads/flume-1.10.0 by this push:
     new 9699907f Use Apache parent repository defn. Disable deploying unnecessary modules
9699907f is described below

commit 9699907fe7a7d47dc5849ef8aa9dc369b517171c
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Fri Jun 3 08:20:37 2022 -0700

    Use Apache parent repository defn. Disable deploying unnecessary modules
---
 build-support/pom.xml | 13 +++++++++++++
 flume-ng-dist/pom.xml |  8 ++++++++
 pom.xml               | 11 +++++++++--
 3 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/build-support/pom.xml b/build-support/pom.xml
index dfe27811..2fdd20e5 100644
--- a/build-support/pom.xml
+++ b/build-support/pom.xml
@@ -27,5 +27,18 @@ limitations under the License.
     <description>Build tools and Configuration</description>
     <properties>
         <maven.site.skip>true</maven.site.skip>
+        <deploy.plugin.version>2.8.2</deploy.plugin.version>
     </properties>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>${deploy.plugin.version}</version>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>
\ No newline at end of file
diff --git a/flume-ng-dist/pom.xml b/flume-ng-dist/pom.xml
index 5ca3783e..8c6ea097 100644
--- a/flume-ng-dist/pom.xml
+++ b/flume-ng-dist/pom.xml
@@ -83,6 +83,14 @@
           <failIfNoFiles>false</failIfNoFiles><!-- usually, no file to do checksum: don't consider error -->
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>${mvn-deploy-plugin.version}</version>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
diff --git a/pom.xml b/pom.xml
index c5314916..0e186da8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,6 +42,9 @@ limitations under the License.
     <sourceJavaVersion>1.8</sourceJavaVersion>
     <targetJavaVersion>1.8</targetJavaVersion>
 
+    <!-- Signing User for release -->
+    <GPGSigningUserName>rgoers@apache.org</GPGSigningUserName>
+
     <!-- defaults for flaky test and focused test exclusions -->
     <test.exclude.pattern>$</test.exclude.pattern> <!-- junk pattern -->
     <test.include.pattern>**/Test*.java</test.include.pattern>
@@ -98,6 +101,7 @@ limitations under the License.
     <mvn-checksum-plugin.version>1.7</mvn-checksum-plugin.version>
     <mvn-clean-plugin.version>3.1.0</mvn-clean-plugin.version>
     <mvn-compiler-plugin.version>3.8.1</mvn-compiler-plugin.version>
+    <mvn-deploy-plugin.version>2.8.2</mvn-deploy-plugin.version>
     <mvn-gpg-plugin.version>1.6</mvn-gpg-plugin.version>
     <mvn-javadoc-plugin.version>2.9</mvn-javadoc-plugin.version>
     <mvn-paranamer-plugin.version>2.8</mvn-paranamer-plugin.version>
@@ -189,6 +193,9 @@ limitations under the License.
                 <goals>
                   <goal>sign</goal>
                 </goals>
+                <configuration>
+                  <keyname>${GPGSigningUserName}</keyname>
+                </configuration>
               </execution>
             </executions>
           </plugin>
@@ -431,11 +438,11 @@ limitations under the License.
   </organization>
 
   <distributionManagement>
-    <repository>
+    <!--<repository>
       <id>apache.staging.https</id>
       <name>Apache Staging Repository</name>
       <url>https://repository.apache.org/service/local/staging/deploy/maven2/</url>
-    </repository>
+    </repository>-->
     <site>
       <id>apache.website</id>
       <url>${siteUrlDeployment}</url>