Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xwiki-platform
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XWiki
xwiki-platform
Commits
2e0d8882
Commit
2e0d8882
authored
3 years ago
by
Vincent Massol
Browse files
Options
Downloads
Patches
Plain Diff
XINFRA-338: Add a Gradle Enterprise cache for faster builds
parent
3b62a900
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.mvn/extensions.xml
+29
-0
29 additions, 0 deletions
.mvn/extensions.xml
.mvn/gradle-enterprise.xml
+43
-0
43 additions, 0 deletions
.mvn/gradle-enterprise.xml
with
72 additions
and
0 deletions
.mvn/extensions.xml
0 → 100644
+
29
−
0
View file @
2e0d8882
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<extensions>
<extension>
<groupId>
com.gradle
</groupId>
<artifactId>
gradle-enterprise-maven-extension
</artifactId>
<version>
1.10.5
</version>
</extension>
</extensions>
This diff is collapsed.
Click to expand it.
.mvn/gradle-enterprise.xml
0 → 100644
+
43
−
0
View file @
2e0d8882
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<gradleEnterprise>
<server>
<url>
https://ge.xwiki.org
</url>
<allowUntrusted>
true
</allowUntrusted>
</server>
<buildScan>
<publish>
ALWAYS
</publish>
<captureGoalInputFiles>
true
</captureGoalInputFiles>
<!-- Use background scans only locally to avoid potential issues on CI (the ephemeral docker agent could terminate
as soon as the build is finished and thus the upload may be terminated before it completes) -->
<backgroundBuildScanUpload>
#{env['CI'] == null}
</backgroundBuildScanUpload>
</buildScan>
<buildCache>
<local>
<enabled>
false
</enabled>
</local>
<remote>
<enabled>
false
</enabled>
</remote>
</buildCache>
</gradleEnterprise>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment