Skip to content

Commit

Permalink
Fixed #196 - Remove SonarQube
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed May 12, 2021
1 parent eb8bb27 commit fd3ac3a
Showing 5 changed files with 24 additions and 49 deletions.
16 changes: 14 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -38,7 +38,20 @@ steps:
path: /drone/src/.repo
commands:
- mvn -Dmaven.repo.local=/drone/src/.repo -V clean verify --fail-at-end --batch-mode

# We have to use the latest version instead of a tagged version.
# We need to reconsider the configuration.
- name: coverage
image: plugins/codecov
settings:
token:
from_secret: codecov-token
files:
- itf-assertj/target/site/jacoco/jacoco.xml
- itf-examples/target/site/jacoco/jacoco.xml
- itf-extension-maven/target/site/jacoco/jacoco.xml
- itf-failure-plugin/target/site/jacoco/jacoco.xml
- itf-jupiter-extension/target/site/jacoco/jacoco.xml
- itf-maven-plugin/target/site/jacoco/jacoco.xml
- name: rebuild
image: meltwater/drone-cache:v1.1.0
pull: always
@@ -59,7 +72,6 @@ steps:
- .repo
when:
event: push

volumes:
- name: jdk11m2cache
temp: { }
43 changes: 0 additions & 43 deletions .github/workflows/sonarqube.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -21,9 +21,7 @@
[![Site](https://github.com/khmarbaise/maven-it-extension/workflows/SitePublishing/badge.svg)][published-site]
[![Issues](https://img.shields.io/github/issues/khmarbaise/maven-it-extension)](https://github.com/khmarbaise/maven-it-extension/issues)
[![Issues Closed](https://img.shields.io/github/issues-closed/khmarbaise/maven-it-extension)](https://github.com/khmarbaise/maven-it-extension/issues?q=is%3Aissue+is%3Aclosed)

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.soebes.itf.jupiter.extension%3Aitf-extension&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.soebes.itf.jupiter.extension%3Aitf-extension)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=com.soebes.itf.jupiter.extension%3Aitf-extension&metric=coverage)](https://sonarcloud.io/dashboard?id=com.soebes.itf.jupiter.extension%3Aitf-extension)
[![codecov](https://codecov.io/gh/khmarbaise/maven-it-extension/branch/master/graph/badge.svg?token=DLPH6544C0)](https://codecov.io/gh/khmarbaise/maven-it-extension)

<!---
-green will be done for 1.0.0 the first time.
Original file line number Diff line number Diff line change
@@ -53,6 +53,7 @@
:issue-189: https://github.com/khmarbaise/maven-it-extension/issues/189[Fixed #189]
:issue-190: https://github.com/khmarbaise/maven-it-extension/issues/190[Fixed #190]
:issue-191: https://github.com/khmarbaise/maven-it-extension/issues/191[Fixed #191]
:issue-196: https://github.com/khmarbaise/maven-it-extension/issues/196[Fixed #196]
:issue-197: https://github.com/khmarbaise/maven-it-extension/issues/197[Fixed #197]
:issue-??: https://github.com/khmarbaise/maven-it-extension/issues/??[Fixed #??]
:pr-??: https://github.com/khmarbaise/maven-it-extension/pull/??[Pull request #??]
@@ -149,7 +150,7 @@ You have to add the supplemental goal `resources-its` in your configuration.
*Reporter of this release*

* ??
** ..
** {pr-???} - ..

*Contributors of this release*

@@ -181,6 +182,7 @@ You have to add the supplemental goal `resources-its` in your configuration.
* {issue-190} - Building on JDK11 only.
* {issue-191} - javadoc.io is abandoned
* {issue-189} - Using drone for building.
* {issue-196} - Remove SonarQube


The full release notes can be found here {release_0_10_0}[Release 0.10.0].
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -140,6 +140,12 @@
<build>
<pluginManagement>
<plugins>
<!-- Remove this with Fixing of #164 -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>

0 comments on commit fd3ac3a

Please sign in to comment.