File tree Expand file tree Collapse file tree 3 files changed +16
-11
lines changed
src/main/java/com/ericsson/ei/waitlist Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,6 @@ before_install:
13
13
- chmod +x pom.xml
14
14
15
15
script :
16
- - mvn clean install
16
+ - mvn -DsomeModule.test.excludes="**/FlowTest.java" test
17
+ - mvn -DsomeModule.test.includes="**/FlowTest.java" test
17
18
Original file line number Diff line number Diff line change 230
230
</execution >
231
231
</executions >
232
232
</plugin >
233
+
233
234
<plugin >
234
- <groupId >org.apache.maven.plugins</groupId >
235
- <artifactId >maven-surefire-plugin</artifactId >
236
- <version >2.20</version >
237
- <configuration >
238
- <excludes >
239
- <exclude >**/FlowTest.java</exclude >
240
- </excludes >
241
- </configuration >
242
- </plugin >
235
+ <groupId >org.apache.maven.plugins</groupId >
236
+ <artifactId >maven-surefire-plugin</artifactId >
237
+ <version >2.20</version >
238
+ <configuration >
239
+ <excludes >
240
+ <exclude >${someModule.test.excludes} </exclude >
241
+ </excludes >
242
+ <includes >
243
+ <include >${someModule.test.includes} </include >
244
+ </includes >
245
+ </configuration >
246
+ </plugin >
247
+
243
248
</plugins >
244
249
</build >
245
250
</project >
Original file line number Diff line number Diff line change @@ -60,5 +60,4 @@ public void run() {
60
60
}
61
61
}
62
62
}
63
-
64
63
}
You can’t perform that action at this time.
0 commit comments