-
Notifications
You must be signed in to change notification settings - Fork 12
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
Develocity configuration #665
Changes from 3 commits
a0cc3fe
8f27268
58ed090
cf26be5
13d4904
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 |
---|---|---|
|
@@ -32,4 +32,5 @@ target | |
*~ | ||
build.log | ||
.local-repo | ||
.flattened-pom.xml | ||
.flattened-pom.xml | ||
.mvn/.develocity/develocity-workspace-id |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | ||
<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://develocity-staging.eclipse.org</url> | ||
</server> | ||
<projectId>org.eclipse.mylyn</projectId> | ||
<buildScan> | ||
<obfuscation> | ||
<username>#{'eclipse-' + env['EF_SHORT_NAME'] + '-bot'}</username> | ||
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. Please replace 'eclipse-' + env['EF_SHORT_NAME'] + '-bot' with 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. I removed the line altogether as discussed on slack. |
||
<ipAddresses>0.0.0.0</ipAddresses> | ||
</obfuscation> | ||
<publishing> | ||
<onlyIf> | ||
<![CDATA[authenticated]]> | ||
</onlyIf> | ||
</publishing> | ||
<backgroundBuildScanUpload>#{isFalse(env['CI'])}</backgroundBuildScanUpload> | ||
</buildScan> | ||
<buildCache> | ||
<local> | ||
<enabled>false</enabled> | ||
</local> | ||
<remote> | ||
<enabled>false</enabled> | ||
<storeEnabled>#{isTrue(env['CI'])}</storeEnabled> | ||
</remote> | ||
</buildCache> | ||
</develocity> |
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.
@ribafish Please provide license header for this new file, you can use an existing .xml file as an example
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.
Added in 13d4904