We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4d9545 commit 43d1752Copy full SHA for 43d1752
1 file changed
.travis.yml
@@ -7,6 +7,12 @@ services:
7
jdk:
8
- oraclejdk8
9
10
+addons:
11
+ sonarcloud:
12
+ organization: utplsql
13
+ token:
14
+ secure: ${SONAR_TOKEN}
15
+
16
env:
17
global:
18
- DOCKER_CFG=$HOME/.docker
@@ -35,9 +41,10 @@ install:
35
41
36
42
script:
37
43
- echo "Run Unit tests"
38
- - mvn test
44
+ - mvn org.jacoco:jacoco-maven-plugin:prepare-agent test
39
45
- echo "Run Integration tests"
40
- - mvn verify -Dmaven.skip.test -DdbUser="${DB_UT3_USER}" -DdbPass="${DB_UT3_PASS}" -DdbUrl="jdbc:oracle:thin:@${DB_URL}"
46
+ - mvn org.jacoco:jacoco-maven-plugin:prepare-agent verify -Dmaven.skip.test -DdbUser="${DB_UT3_USER}" -DdbPass="${DB_UT3_PASS}" -DdbUrl="jdbc:oracle:thin:@${DB_URL}"
47
+ - mvn sonar:sonar
48
49
#before_deploy:
50
# - bash .travis/create_release.sh
0 commit comments