From ad388fb5abf1b2b2cee791fd7f8792152e639b20 Mon Sep 17 00:00:00 2001 From: ondrejrozsypal Date: Tue, 14 Apr 2020 13:55:20 +0200 Subject: [PATCH] revert whitesource --- .circleci/config.yml | 46 ---------------------------------------- wss-unified-agent.config | 46 ---------------------------------------- 2 files changed, 92 deletions(-) delete mode 100644 .circleci/config.yml delete mode 100644 wss-unified-agent.config diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index d20caa5..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,46 +0,0 @@ -version: 2.1 - -executors: - java: - description: "A regular executor based on openjdk image" - docker: - - image: circleci/openjdk:8-jdk - -jobs: - whitesource-scan: - executor: java - - steps: - - checkout - - - run: - name: Install pip - command: | - sudo apt-get update - sudo apt-get install -y python-pip - - run: - name: Download latest WhiteSource Unified Agent - command: curl -LJO https://github.com/whitesource/unified-agent-distribution/releases/latest/download/wss-unified-agent.jar - - run: - name: Run WhiteSource scan - command: java -jar wss-unified-agent.jar -d ~/project -c ~/project/wss-unified-agent.config -apiKey ${API_KEY} - - store_artifacts: - path: ~/project/whitesource - -workflows: - version: 2 - commit: - jobs: - - whitesource-scan: - context: whitesource - security-scan: - triggers: - - schedule: - cron: "0 1 * * 0" - filters: - branches: - only: - master - jobs: - - whitesource-scan: - context: whitesource diff --git a/wss-unified-agent.config b/wss-unified-agent.config deleted file mode 100644 index f246f27..0000000 --- a/wss-unified-agent.config +++ /dev/null @@ -1,46 +0,0 @@ -############################################################### -# WhiteSource Unified-Agent configuration file -############################################################### -# GENERAL SCAN MODE: Files and Package Managers -############################################################### -# Organization vitals -###################### - -projectToken=38bb21f384f446e9b914ad3c816abcdbddce46a489fb4560a0caee42f661fef0 - -# Change the below URL to your WhiteSource server. -# Use the 'WhiteSource Server URL' which can be retrieved -# from your 'Profile' page on the 'Server URLs' panel. -# Then, add the '/agent' path to it. -wss.url=https://app.whitesourcesoftware.com/agent - -############ -# Policies # -############ -checkPolicies=true -forceCheckAllDependencies=false -forceUpdate=false -forceUpdate.failBuildOnPolicyViolation=false -#updateInventory=false - -########### -# General # -########### -#log.level=debug - -######################################## -# Package Manager Dependency resolvers # -######################################## -python.installVirtualenv=true - - -########################################################################################### -# Includes/Excludes Glob patterns - Please use only one exclude line and one include line # -########################################################################################### -includes=**/*.zip **/*.tar.gz **/*.egg **/*.whl **/*.py - -#Exclude file extensions or specific directories by adding **/*. or **//** -excludes=**/*sources.jar **/*javadoc.jar - -case.sensitive.glob=false -followSymbolicLinks=true