From 55e92316c1ebdbf0726f02baa8f82c268eaa911a Mon Sep 17 00:00:00 2001 From: Jeroen Laverman Date: Wed, 25 Jul 2018 16:51:42 +0200 Subject: [PATCH] Change sonarqube configuration (#712) * Remove Sonar-Batch Signed-off-by: Jeroen Laverman * Remove sonar scan from circlci configuration * move sonar script to .circleci folder for CircleCi 2.0 preparation Signed-off-by: Jeroen Laverman --- sonarCircleCi.sh => .circleci/sonarCircleCi.sh | 0 README.md | 1 - circle.yml | 2 +- 3 files changed, 1 insertion(+), 2 deletions(-) rename sonarCircleCi.sh => .circleci/sonarCircleCi.sh (100%) diff --git a/sonarCircleCi.sh b/.circleci/sonarCircleCi.sh similarity index 100% rename from sonarCircleCi.sh rename to .circleci/sonarCircleCi.sh diff --git a/README.md b/README.md index d82b80669..e946ece2a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ Eclipse [hawkBit](http://www.eclipse.org/hawkbit/index.html) is an domain independent back end solution for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP based networking infrastructure. Build: [![Circle CI](https://circleci.com/gh/eclipse/hawkbit.svg?style=shield)](https://circleci.com/gh/eclipse/hawkbit) - [![SonarQuality](https://sonar.ops.bosch-iot-rollouts.com/api/badges/gate?key=org.eclipse.hawkbit:hawkbit-parent)](https://sonar.ops.bosch-iot-rollouts.com) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.eclipse.hawkbit/hawkbit-parent/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.eclipse.hawkbit/hawkbit-parent) Docker images: [![Docker](https://images.microbadger.com/badges/version/hawkbit/hawkbit-update-server:0.2.1.svg)](https://hub.docker.com/r/hawkbit/hawkbit-update-server) [![Docker MYSQL](https://images.microbadger.com/badges/version/hawkbit/hawkbit-update-server:0.2.1-mysql.svg)](https://hub.docker.com/r/hawkbit/hawkbit-update-server) diff --git a/circle.yml b/circle.yml index 5e2a19f23..fba76a37d 100644 --- a/circle.yml +++ b/circle.yml @@ -23,7 +23,7 @@ dependencies: test: override: - - sh sonarCircleCi.sh + - mvn verify license:check post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;