Skip to content
Snippets Groups Projects
Commit b57ed5e2 authored by Michael Hamann's avatar Michael Hamann
Browse files

[Misc] Fix Develocity cache

(cherry picked from commit 0b857ef2)
parent 4eae0ff7
No related branches found
No related tags found
No related merge requests found
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
more to save the goal outputs since they're not going to be re-used. more to save the goal outputs since they're not going to be re-used.
--> -->
<local> <local>
<enabled><![CDATA[env['CI'] == null]]></enabled> <enabled>#{env['CI'] == null}</enabled>
</local> </local>
<remote> <remote>
<!-- Notes: <!-- Notes:
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
--> -->
<enabled>true</enabled> <enabled>true</enabled>
<!-- Only CI jobs are allowed to store build outputs in the remote cache --> <!-- Only CI jobs are allowed to store build outputs in the remote cache -->
<storeEnabled><![CDATA[isTrue(env['CI']) and isTrue(env['DEVELOCITY_ACCESS_KEY'])]]></storeEnabled> <storeEnabled>#{env['CI'] != null}</storeEnabled>
<server> <server>
<!-- Note: Remote cache authentication is handled in the .m2/.develocity/keys.properties file and not <!-- Note: Remote cache authentication is handled in the .m2/.develocity/keys.properties file and not
anymore in the Maven settings.xml file --> anymore in the Maven settings.xml file -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment