File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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.14</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+ " META-INF/maven/plugin.xml" ,
16+ " META-INF/maven/**/plugin-help.xml"
17+ ]
18+ },
19+ "surefire" : {
20+ "artifacts" : {
21+ "surefire-reports" : {
22+ "includes" : [
23+ " surefire-reports/TEST-*.xml"
24+ ]
25+ }
26+ }
27+ },
28+ "failsafe" : {
29+ "artifacts" : {
30+ "failsafe-reports" : {
31+ "includes" : [
32+ " failsafe-reports/TEST-*.xml"
33+ ]
34+ }
35+ }
36+ }
37+ }
You can’t perform that action at this time.
0 commit comments