This is an automated email from the ASF dual-hosted git repository. rgoers pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/flume.git
commit 8b6ed2c80b0d1b62e1e6d54613c2316461344ae4 Author: Ralph Goers <[email protected]> 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 df98d97a..11f5c4b1 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 c17bdf03..5bbfd34e 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 3ec484ca..77e27d6a 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>[email protected]</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>
