forked from code-not-found/spring-jms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (31 loc) · 786 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: java
sudo: false
install: true
jdk:
- openjdk11
addons:
sonarqube:
organization: code-not-found-spring-jms
token:
secure: $SONAR_TOKEN
env:
- PROJECT_DIR=spring-jms-activemq-hello-world
- PROJECT_DIR=spring-jms-annotations
- PROJECT_DIR=spring-jms-artemis-hello-world
- PROJECT_DIR=spring-jms-integration
- PROJECT_DIR=spring-jms-integration-gateway
- PROJECT_DIR=spring-jms-jmstemplate
- PROJECT_DIR=spring-jms-listener
- PROJECT_DIR=spring-jms-message-converter
- PROJECT_DIR=spring-jms-message-selector
- PROJECT_DIR=spring-jms-topic
script:
- cd $PROJECT_DIR
- mvn test -B
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
cache:
directories:
- $HOME/.m2/repository
- $HOME/.sonar/cache
notifications:
email: false