Fix API breakage caused by OS Plugin version scan
[releng/global-jjb.git] / shell / maven-javadoc-publish.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
12 # Publishes javadoc to a Maven project.
13
14 # DO NOT enable -u because $MAVEN_PARAMS and $MAVEN_OPTIONS could be unbound.
15 # Ensure we fail the job if any steps fail.
16 set -e -o pipefail
17 set +u
18
19 JAVADOC_DIR="$WORKSPACE/archives/javadoc"
20
21 pushd "$JAVADOC_DIR"
22 zip -r "$WORKSPACE/javadoc.zip" .
23 popd
24
25 lftools deploy nexus-zip "$NEXUS_URL" "javadoc" "$DEPLOY_PATH" "$WORKSPACE/javadoc.zip"