File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
-
15
14
runs-on : ubuntu-latest
16
-
17
15
steps :
18
16
- uses : actions/checkout@v2
19
17
- name : Set up JDK 11
20
18
uses : actions/setup-java@v1
21
19
with :
22
20
java-version : 11
23
21
- name : Build with Maven
24
- run : mvn -B package --file pom.xml
22
+ run : mvn clean verify coveralls:report -DrepoToken=$COVERALLS_REPO_TOKEN
Original file line number Diff line number Diff line change 65
65
<microprofile-fault-tolerance .version>3.0</microprofile-fault-tolerance .version>
66
66
<modelmapper .version>2.3.0</modelmapper .version>
67
67
<glassfish .version>2.22.2</glassfish .version>
68
+ <jaxb-api .version>2.3.1</jaxb-api .version>
68
69
</properties >
69
70
70
71
<dependencies >
143
144
<groupId >org.eclipse.microprofile.fault-tolerance</groupId >
144
145
<artifactId >microprofile-fault-tolerance-spec</artifactId >
145
146
</dependency >
146
-
147
+ <dependency >
148
+ <groupId >javax.xml.bind</groupId >
149
+ <artifactId >jaxb-api</artifactId >
150
+ <version >${jaxb-api.version} </version >
151
+ </dependency >
147
152
<dependency >
148
153
<groupId >org.eclipse.microprofile.rest.client</groupId >
149
154
<artifactId >microprofile-rest-client-api</artifactId >
279
284
280
285
<build >
281
286
<plugins >
287
+ <plugin >
288
+ <groupId >org.eluder.coveralls</groupId >
289
+ <artifactId >coveralls-maven-plugin</artifactId >
290
+ <version >4.3.0</version >
291
+ <dependencies >
292
+ <dependency >
293
+ <groupId >javax.xml.bind</groupId >
294
+ <artifactId >jaxb-api</artifactId >
295
+ <version >${jaxb-api.version} </version >
296
+ </dependency >
297
+ </dependencies >
298
+ </plugin >
282
299
<plugin >
283
300
<artifactId >maven-compiler-plugin</artifactId >
284
301
<version >3.8.1</version >
You can’t perform that action at this time.
0 commit comments