-
Notifications
You must be signed in to change notification settings - Fork 582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add develocity configuration. #5821
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<develocity | ||
xmlns="https://www.gradle.com/develocity-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="https://www.gradle.com/develocity-maven https://www.gradle.com/schema/develocity-maven.xsd"> | ||
<server> | ||
<url>https://ge.spring.io</url> | ||
</server> | ||
<buildScan> | ||
<backgroundBuildScanUpload>false</backgroundBuildScanUpload> | ||
<captureGoalInputFiles>true</captureGoalInputFiles> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we want to set the |
||
<publishIfAuthenticated>true</publishIfAuthenticated> | ||
<obfuscation> | ||
<ipAddresses>#{{'0.0.0.0'}}</ipAddresses> | ||
</obfuscation> | ||
</buildScan> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we want to have this on our CI Builds or also on releases? If so do we want to use tags?
|
||
<buildCache> | ||
<local> | ||
<enabled>true</enabled> | ||
</local> | ||
<remote> | ||
<server> | ||
<credentials> | ||
<username>${env.GRADLE_ENTERPRISE_CACHE_USERNAME}</username> | ||
<password>${env.GRADLE_ENTERPRISE_CACHE_PASSWORD}</password> | ||
</credentials> | ||
</server> | ||
<enabled>true</enabled> | ||
<storeEnabled>#{env['GRADLE_ENTERPRISE_CACHE_USERNAME'] != null and env['GRADLE_ENTERPRISE_CACHE_PASSWORD'] != null}</storeEnabled> | ||
</remote> | ||
</buildCache> | ||
</develocity> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<extensions> | ||
<extension> | ||
<groupId>com.gradle</groupId> | ||
<artifactId>develocity-maven-extension</artifactId> | ||
<version>1.21.3</version> | ||
</extension> | ||
<extension> | ||
<groupId>com.gradle</groupId> | ||
<artifactId>common-custom-user-data-maven-extension</artifactId> | ||
<version>2.0</version> | ||
</extension> | ||
</extensions> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this something we want to run on a schedule or every time?
Have we tested how much time this will add to our CI builds?