File tree Expand file tree Collapse file tree 2 files changed +34
-9
lines changed Expand file tree Collapse file tree 2 files changed +34
-9
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<extensions >
3
- <!--
4
- https://docs.gradle.com/develocity/maven-extension/current/
5
- This extension is used for maven build optimization and enhanced caching.
6
- Config: develocity.xml
7
- Use "-Ddevelocity.cache.local.enabled=false" to disable build cache optimizations.
8
- -->
9
3
<extension >
10
- <groupId >com.gradle</groupId >
11
- <artifactId >develocity-maven-extension</artifactId >
12
- <version >2.0</version >
4
+ <!-- https://github.com/seregamorph/maven-surefire-cached -->
5
+ <groupId >com.github.seregamorph</groupId >
6
+ <artifactId >surefire-cached-extension</artifactId >
7
+ <version >0.12</version >
13
8
</extension >
14
9
</extensions >
Original file line number Diff line number Diff line change
1
+ {
2
+ "//" : " Configuration for Maven surefire-cached-extension" ,
3
+ "common" : {
4
+ "inputIgnoredProperties" : [
5
+ " java.version" ,
6
+ " os.arch" ,
7
+ " os.name"
8
+ ],
9
+ "cacheExcludes" : [
10
+ ]
11
+ },
12
+ "surefire" : {
13
+ "artifacts" : {
14
+ "surefire-reports" : {
15
+ "includes" : [
16
+ " surefire-reports/TEST-*.xml"
17
+ ]
18
+ }
19
+ }
20
+ },
21
+ "failsafe" : {
22
+ "artifacts" : {
23
+ "failsafe-reports" : {
24
+ "includes" : [
25
+ " failsafe-reports/TEST-*.xml"
26
+ ]
27
+ }
28
+ }
29
+ }
30
+ }
You can’t perform that action at this time.
0 commit comments