Skip to content

Commit

Permalink
Add configuration to send build scans to https://ge.apache.org
Browse files Browse the repository at this point in the history
  • Loading branch information
clayburn committed Mar 13, 2023
1 parent 11c6567 commit 423c762
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ nb-configuration.xml
.vscode/

# formatter-maven-plugin
.cache/
.cache/

# https://ge.apache.org
.mvn/.gradle-enterprise
14 changes: 14 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>

<extensions>
<extension>
<groupId>com.gradle</groupId>
<artifactId>gradle-enterprise-maven-extension</artifactId>
<version>1.16.5</version>
</extension>
<extension>
<groupId>com.gradle</groupId>
<artifactId>common-custom-user-data-maven-extension</artifactId>
<version>1.11.1</version>
</extension>
</extensions>
28 changes: 28 additions & 0 deletions .mvn/gradle-enterprise.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>

<gradleEnterprise
xmlns="https://www.gradle.com/gradle-enterprise-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.gradle.com/gradle-enterprise-maven https://www.gradle.com/schema/gradle-enterprise-maven.xsd">
<server>
<url>https://ge.apache.org</url>
</server>
<buildScan>
<capture>
<goalInputFiles>true</goalInputFiles>
</capture>
<obfuscation>
<ipAddresses>0.0.0.0</ipAddresses>
</obfuscation>
<publish>ALWAYS</publish>
<publishIfAuthenticated>true</publishIfAuthenticated>
<backgroundBuildScanUpload>#{isFalse(env['GITHUB_ACTIONS'])}</backgroundBuildScanUpload>
</buildScan>
<buildCache>
<local>
<enabled>#{isFalse(env['GITHUB_ACTIONS'])}</enabled>
</local>
<remote>
<enabled>false</enabled>
</remote>
</buildCache>
</gradleEnterprise>

0 comments on commit 423c762

Please sign in to comment.