File tree Expand file tree Collapse file tree 3 files changed +39
-20
lines changed Expand file tree Collapse file tree 3 files changed +39
-20
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<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- -->
93 <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.19</version >
138 </extension >
149</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+ "excludeModules" : [
10+ ],
11+ "excludeClasspathResources" : [
12+ " META-INF/MANIFEST.MF" ,
13+ " META-INF/maven/**/pom.properties" ,
14+ " META-INF/maven/**/pom.xml"
15+ ]
16+ },
17+ "surefire" : {
18+ "artifacts" : {
19+ "surefire-reports" : {
20+ "includes" : [
21+ " surefire-reports/TEST-*.xml"
22+ ]
23+ }
24+ }
25+ },
26+ "failsafe" : {
27+ "artifacts" : {
28+ "failsafe-reports" : {
29+ "includes" : [
30+ " failsafe-reports/TEST-*.xml"
31+ ]
32+ }
33+ }
34+ }
35+ }
You can’t perform that action at this time.
0 commit comments