mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-10-13 13:44:26 +00:00

* Add configuration to send build scans to https://ge.apache.org * Add `.mvn` directories to IT tests projects that lack one Some of the integration tests to do not have `.mvn` directories and search up the project structure until they find the `.mvn` directory of the root project. This change adds `.mvn` directories with empty `maven.config` files so that the sample projects in VCS will be as close as possible to those executed during integration testing
29 lines
934 B
XML
29 lines
934 B
XML
<?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>
|