Chore: Upgrade Jenkins-job-builder to 6.3.0
[releng/global-jjb.git] / shell / sonatype-clm.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> sonatype-clm.sh"
12 # This script builds a Maven project and deploys it into a staging repo which
13 # can be used to deploy elsewhere later eg. Nexus staging / snapshot repos.
14
15 # DO NOT enable -u because $MAVEN_PARAMS and $MAVEN_OPTIONS could be unbound.
16 # Ensure we fail the job if any steps fail.
17 set -e -o pipefail
18 set +u
19
20 export MAVEN_OPTS
21
22 # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters.
23 # shellcheck disable=SC2086
24 $MVN $MAVEN_GOALS dependency:tree com.sonatype.clm:clm-maven-plugin:2.41.0-02:index \
25     --global-settings "$GLOBAL_SETTINGS_FILE" \
26     --settings "$SETTINGS_FILE" \
27     -DaltDeploymentRepository=staging::default::file:"$WORKSPACE"/m2repo \
28     $MAVEN_OPTIONS $MAVEN_PARAMS