From 5164bbda19bc466a8c388bb10cd12c7af26b49a0 Mon Sep 17 00:00:00 2001 From: Dominic Schabel Date: Sun, 17 Jun 2018 00:31:47 +0200 Subject: [PATCH] Moved 3rd-party dependencies to hidden folder Signed-off-by: Dominic Schabel --- {3rd-dependencies => .3rd-party}/README.md | 0 .../Release_0_2_0.md | 0 {3rd-dependencies => .3rd-party}/compile.txt | 0 .../generateReleaseMd.sh | 0 {3rd-dependencies => .3rd-party}/listDeps.sh | 0 {3rd-dependencies => .3rd-party}/provided.txt | 0 {3rd-dependencies => .3rd-party}/test.txt | 0 sonarCircleCi.sh | 30 ------------------- 8 files changed, 30 deletions(-) rename {3rd-dependencies => .3rd-party}/README.md (100%) rename {3rd-dependencies => .3rd-party}/Release_0_2_0.md (100%) rename {3rd-dependencies => .3rd-party}/compile.txt (100%) rename {3rd-dependencies => .3rd-party}/generateReleaseMd.sh (100%) rename {3rd-dependencies => .3rd-party}/listDeps.sh (100%) rename {3rd-dependencies => .3rd-party}/provided.txt (100%) rename {3rd-dependencies => .3rd-party}/test.txt (100%) delete mode 100644 sonarCircleCi.sh diff --git a/3rd-dependencies/README.md b/.3rd-party/README.md similarity index 100% rename from 3rd-dependencies/README.md rename to .3rd-party/README.md diff --git a/3rd-dependencies/Release_0_2_0.md b/.3rd-party/Release_0_2_0.md similarity index 100% rename from 3rd-dependencies/Release_0_2_0.md rename to .3rd-party/Release_0_2_0.md diff --git a/3rd-dependencies/compile.txt b/.3rd-party/compile.txt similarity index 100% rename from 3rd-dependencies/compile.txt rename to .3rd-party/compile.txt diff --git a/3rd-dependencies/generateReleaseMd.sh b/.3rd-party/generateReleaseMd.sh similarity index 100% rename from 3rd-dependencies/generateReleaseMd.sh rename to .3rd-party/generateReleaseMd.sh diff --git a/3rd-dependencies/listDeps.sh b/.3rd-party/listDeps.sh similarity index 100% rename from 3rd-dependencies/listDeps.sh rename to .3rd-party/listDeps.sh diff --git a/3rd-dependencies/provided.txt b/.3rd-party/provided.txt similarity index 100% rename from 3rd-dependencies/provided.txt rename to .3rd-party/provided.txt diff --git a/3rd-dependencies/test.txt b/.3rd-party/test.txt similarity index 100% rename from 3rd-dependencies/test.txt rename to .3rd-party/test.txt diff --git a/sonarCircleCi.sh b/sonarCircleCi.sh deleted file mode 100644 index 066bda912..000000000 --- a/sonarCircleCi.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2015 Bosch Software Innovations GmbH and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/epl-v10.html -# - -echo $CI_PULL_REQUEST pull request -# regular sonar on master -if [ "$CIRCLE_BRANCH" = "master" ]; then - mvn verify license:check sonar:sonar -Dsonar.login=$SONAR_SERVER_TOKEN -# preview in case of pull request - disabled as circle does not fill those with pull reuqests from different directories -else - #if [ -n "$CI_PULL_REQUEST" ]; then - # mvn org.jacoco:jacoco-maven-plugin:prepare-agent verify license:check sonar:sonar -B -e -V \ - # -Dclirr=true \ - # -Dsonar.analysis.mode=issues \ - # -Dsonar.github.pullRequest=`echo $CI_PULL_REQUEST| awk -F'/' '{print $7}'` \ - # -Dsonar.github.login=$SONAR_GITHUB_LOGIN \ - # -Dsonar.github.oauth=$SONAR_GITHUB_OAUTH \ - # -Dsonar.login=$SONAR_SERVER_USER \ - # -Dsonar.password=$SONAR_SERVER_PASSWD - #else - mvn verify license:check - #fi -fi -# but noting in case of other branches