Skip to content

Commit 768f714

Browse files
authored
Merge pull request #28 from apupier/25-ActivateSonarAnalysis
#25 - Activate Sonar analysis
2 parents 7993f32 + e749772 commit 768f714

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ cache:
1212
directories:
1313
- $HOME/.m2
1414
- $HOME/.gradle/
15+
after_success:
16+
- if [[ $TRAVIS_PULL_REQUEST == "false" && $TRAVIS_BRANCH == "master" ]]; then
17+
mvn sonar:sonar -Dsonar.login=${SONAR_TOKEN} -Dsonar.projectKey="camel-lsp-client-eclipse" -Dsonar.projectName="Eclipse Client for Apache Camel Language Server";
18+
fi
19+
addons:
20+
sonarcloud:
21+
organization: "camel-tooling"
22+
branches:
23+
- master
1524
deploy:
1625
- provider: releases
1726
api_key: ${DEPLOY_TOKEN}

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<plugin>
6161
<groupId>org.jacoco</groupId>
6262
<artifactId>jacoco-maven-plugin</artifactId>
63-
<version>0.7.9</version>
63+
<version>0.8.1</version>
6464
<configuration>
6565
<append>true</append>
6666
<includes>com.github.cameltooling.lsp.*,com.github.cameltooling.*</includes>

0 commit comments

Comments
 (0)