This is an automated email from the ASF dual-hosted git repository. radhikakundam pushed a commit to branch atlas-2.5-release-fixes in repository https://gitbox.apache.org/repos/asf/atlas.git
commit 04f8243e083631ef6e7066e009227cd7970bb376 Author: Radhika Kundam <[email protected]> AuthorDate: Wed Mar 25 16:58:47 2026 -0700 ATLAS-5261: ATLAS-5262: ATLAS-5263: Fix code coverage and optimize atlas.war size and enhance release build to checksum artifacts --- dev-support/checks/coverage.sh | 3 ++- release-build.xml | 20 +++++++++++++++++++- webapp/pom.xml | 6 ++++++ 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/dev-support/checks/coverage.sh b/dev-support/checks/coverage.sh index 8f35e35c1..885bcfa37 100755 --- a/dev-support/checks/coverage.sh +++ b/dev-support/checks/coverage.sh @@ -1,4 +1,5 @@ -#!/usr/bin/env bash +#!/bin/bash + # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. diff --git a/release-build.xml b/release-build.xml index 9b0b38fd4..b742ba5af 100644 --- a/release-build.xml +++ b/release-build.xml @@ -21,7 +21,7 @@ </description> <property name="release-dir" value="target" /> - <property name="incubationstr" value="-incubating" /> + <property name="incubationstr" value="" /> <property name="release-name" value="apache-atlas-${atlas-release-version}${incubationstr}" /> <property name="build-release-tar-file" value="${release-name}-sources.tar.gz" /> @@ -68,5 +68,23 @@ <arg value="--print-mds" /> <arg value="${release-dir}/${build-release-tar-file}" /> </exec> + + <exec executable="gpg" output="${release-dir}/${build-release-tar-file}.md5"> + <arg value="--print-md" /> + <arg value="MD5" /> + <arg value="${release-dir}/${build-release-tar-file}" /> + </exec> + + <exec executable="gpg" output="${release-dir}/${build-release-tar-file}.sha256"> + <arg value="--print-md" /> + <arg value="SHA256" /> + <arg value="${release-dir}/${build-release-tar-file}" /> + </exec> + + <exec executable="gpg" output="${release-dir}/${build-release-tar-file}.sha512"> + <arg value="--print-md" /> + <arg value="SHA512" /> + <arg value="${release-dir}/${build-release-tar-file}" /> + </exec> </target> </project> diff --git a/webapp/pom.xml b/webapp/pom.xml index 700317b6d..b799d548b 100755 --- a/webapp/pom.xml +++ b/webapp/pom.xml @@ -244,6 +244,12 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-aws</artifactId> <version>${hadoop.version}</version> + <exclusions> + <exclusion> + <groupId>software.amazon.awssdk</groupId> + <artifactId>bundle</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
