File tree Expand file tree Collapse file tree 2 files changed +50
-1
lines changed Expand file tree Collapse file tree 2 files changed +50
-1
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
+
2
3
cache :
3
4
directories :
4
5
- $HOME/.m2
6
+
5
7
jdk :
6
8
- openjdk11
9
+
10
+ after_success :
11
+ - mvn clean test jacoco:report coveralls:report
Original file line number Diff line number Diff line change 10
10
<version >1.2.0-SNAPSHOT</version >
11
11
12
12
<properties >
13
- <commonslang .version>3.7</commonslang .version>
13
+ <commonslang .version>3.7</commonslang .version>
14
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
14
16
</properties >
15
17
16
18
<licenses >
106
108
<version >2.2.1</version >
107
109
</dependency >
108
110
</dependencies >
111
+
112
+ <profiles >
113
+ <profile >
114
+ <id >travis</id >
115
+ <activation >
116
+ <property >
117
+ <name >env.TRAVIS</name >
118
+ <value >true</value >
119
+ </property >
120
+ </activation >
121
+ <build >
122
+ <plugins >
123
+ <plugin >
124
+ <groupId >org.jacoco</groupId >
125
+ <artifactId >jacoco-maven-plugin</artifactId >
126
+ <version >0.8.7</version >
127
+ <executions >
128
+ <execution >
129
+ <id >prepare-agent</id >
130
+ <goals >
131
+ <goal >prepare-agent</goal >
132
+ </goals >
133
+ </execution >
134
+ </executions >
135
+ </plugin >
136
+ <plugin >
137
+ <groupId >org.eluder.coveralls</groupId >
138
+ <artifactId >coveralls-maven-plugin</artifactId >
139
+ <version >4.3.0</version >
140
+ <dependencies >
141
+ <dependency >
142
+ <groupId >javax.xml.bind</groupId >
143
+ <artifactId >jaxb-api</artifactId >
144
+ <version >2.3.1</version >
145
+ </dependency >
146
+ </dependencies >
147
+ </plugin >
148
+ </plugins >
149
+ </build >
150
+ </profile >
151
+ </profiles >
152
+
109
153
</project >
You can’t perform that action at this time.
0 commit comments