Keycloak
1<?xml version="1.0" encoding="UTF-8" ?>
2<!--
3~ Copyright 2022 Red Hat, Inc. and/or its affiliates
4~ and other contributors as indicated by the @author tags.
5~
6~ Licensed under the Apache License, Version 2.0 (the "License");
7~ you may not use this file except in compliance with the License.
8~ You may obtain a copy of the License at
9~
10~ http://www.apache.org/licenses/LICENSE-2.0
11~
12~ Unless required by applicable law or agreed to in writing, software
13~ distributed under the License is distributed on an "AS IS" BASIS,
14~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15~ See the License for the specific language governing permissions and
16~ limitations under the License.
17-->
18
19<cache xmlns="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"20xsi:schemaLocation="http://maven.apache.org/BUILD-CACHE-CONFIG/1.0.0 https://maven.apache.org/xsd/build-cache-config-1.0.0.xsd">21<configuration>22<enabled>false</enabled>23<hashAlgorithm>XX</hashAlgorithm>24</configuration>25<input>26<global>27<!-- matching all files, as there is no good file pattern to match files in META-INF/services by their file name -->28<glob>{*}</glob>29</global>30<plugins>31<plugin groupId="com.github.eirslett" artifactId="frontend-maven-plugin">32<dirScan>33<excludes>34<exclude tagName="installDirectory" />35</excludes>36</dirScan>37</plugin>38</plugins>39</input>40<executionControl>41<runAlways>42<plugins>43<plugin artifactId="maven-failsafe-plugin"/>44</plugins>45<goalsLists>46<goalsList artifactId="maven-install-plugin">47<goals>48<goal>install</goal>49</goals>50</goalsList>51</goalsLists>52</runAlways>53<reconcile>54<plugins>55<plugin artifactId="maven-surefire-plugin" goal="test">56<reconciles>57<!-- might reconsider later: if not putting them here, it might be simpler to run local tests incrementally -->58<reconcile propertyName="skip" skipValue="true"/>59<reconcile propertyName="skipExec" skipValue="true"/>60<reconcile propertyName="skipTests" skipValue="true"/>61<reconcile propertyName="testFailureIgnore" skipValue="true"/>62</reconciles>63</plugin>64</plugins>65</reconcile>66</executionControl>67</cache>