/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import com.mgd.core.gradle.S3Upload dependencies { /* required to resolve below issue with aws sdk JAXB is unavailable. Will fallback to SDK implementation which may be less performant */ implementation 'javax.xml.bind:jaxb-api:2.3.1' } tasks.create(name: 'uploadMavenArtifactsToS3', type: S3Upload) { dependsOn ':release:releasePrerequisites' bucket = awsS3Bucket keyPrefix = "${archiveRootKey}/maven/" sourceDir = mavenPublicationRootFile.absolutePath } task uploadArtifacts { dependsOn 'uploadMavenArtifactsToS3' }