Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

helper fixes #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oci-service-broker/build.gradle
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ buildscript {

plugins {
id "com.github.hierynomus.license" version "0.15.0"
id "com.github.spotbugs" version "1.6.4"
id "com.github.spotbugs" version "2.0.0"
}

apply plugin: 'java'
2 changes: 1 addition & 1 deletion oci-service-broker/download_SDK_libs.sh
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ mkdir -p ${SCRIPT_DIR}/libs
echo "Downloading oci-java-sdk version v${SDK_VERSION} and the dependent libraries..."
curl -sSL https://github.com/oracle/oci-java-sdk/releases/download/v${SDK_VERSION}/oci-java-sdk-${SDK_VERSION}.zip -o ${TEMP_DIR}/oci-java-sdk.zip
unzip -qq ${TEMP_DIR}/oci-java-sdk.zip -d ${TEMP_DIR}
cp ${TEMP_DIR}/lib/oci-java-sdk-full-1.28.0.jar ${SCRIPT_DIR}/libs/
cp ${TEMP_DIR}/lib/oci-java-sdk-full-${SDK_VERSION}.jar ${SCRIPT_DIR}/libs/
cp ${TEMP_DIR}/third-party/lib/*.jar ${SCRIPT_DIR}/libs/
rm -rf ${TEMP_DIR}
echo "oci-java-sdk and the dependent libraries are downloaded to ${SCRIPT_DIR}/libs directory"