This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 74ee163ffd NIFI-13856 Added build integration with 
develocity.apache.org (#10301)
74ee163ffd is described below

commit 74ee163ffd9742240eada37c13a07d6b3e33af71
Author: Clay Johnson <[email protected]>
AuthorDate: Sat Sep 13 16:35:57 2025 -0500

    NIFI-13856 Added build integration with develocity.apache.org (#10301)
    
    Signed-off-by: David Handermann <[email protected]>
---
 .github/workflows/ci-workflow.yml       |  1 +
 .github/workflows/code-compliance.yml   |  1 +
 .github/workflows/code-coverage.yml     |  1 +
 .github/workflows/docker-tests.yml      |  2 ++
 .github/workflows/integration-tests.yml |  2 ++
 .github/workflows/system-tests.yml      |  1 +
 .gitignore                              |  5 +++-
 .mvn/develocity.xml                     | 46 +++++++++++++++++++++++++++++++++
 .mvn/extensions.xml                     | 34 ++++++++++++++++++++++++
 9 files changed, 92 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci-workflow.yml 
b/.github/workflows/ci-workflow.yml
index d45e3198a9..9ec356e911 100644
--- a/.github/workflows/ci-workflow.yml
+++ b/.github/workflows/ci-workflow.yml
@@ -43,6 +43,7 @@ env:
     --no-transfer-progress
     --fail-fast
     -D dir-only
+  DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.github/workflows/code-compliance.yml 
b/.github/workflows/code-compliance.yml
index df8889c628..963df4b4b4 100644
--- a/.github/workflows/code-compliance.yml
+++ b/.github/workflows/code-compliance.yml
@@ -36,6 +36,7 @@ env:
     -Xms6g
     -Xmx6g
     -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN
+  DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
 
 jobs:
   validate:
diff --git a/.github/workflows/code-coverage.yml 
b/.github/workflows/code-coverage.yml
index d1fe96b7eb..26a469e224 100644
--- a/.github/workflows/code-coverage.yml
+++ b/.github/workflows/code-coverage.yml
@@ -28,6 +28,7 @@ env:
     -Xms6g
     -Xmx6g
     -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN
+  DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
 
 permissions:
   contents: read
diff --git a/.github/workflows/docker-tests.yml 
b/.github/workflows/docker-tests.yml
index b8c302fef2..458f44becd 100644
--- a/.github/workflows/docker-tests.yml
+++ b/.github/workflows/docker-tests.yml
@@ -91,6 +91,8 @@ env:
     -pl nifi-docker/dockermaven
     -pl nifi-registry/nifi-registry-docker-maven/dockermaven
 
+  DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
diff --git a/.github/workflows/integration-tests.yml 
b/.github/workflows/integration-tests.yml
index 477d1548db..b7044609f2 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -82,6 +82,8 @@ env:
     -pl -:nifi-processor-bundle-archetype
     -pl -:nifi-service-bundle-archetype
 
+  DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
diff --git a/.github/workflows/system-tests.yml 
b/.github/workflows/system-tests.yml
index 9356e0bc2d..af6704947d 100644
--- a/.github/workflows/system-tests.yml
+++ b/.github/workflows/system-tests.yml
@@ -68,6 +68,7 @@ env:
     -pl :nifi-py4j-integration-tests
     -pl nifi-system-tests/nifi-system-test-suite
     -pl nifi-system-tests/nifi-stateless-system-test-suite
+  DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.gitignore b/.gitignore
index 93a83039ab..bc18e8dbb4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,4 +20,7 @@ nb-configuration.xml
 .java-version
 
/nifi-nar-bundles/nifi-py4j-bundle/nifi-python-extension-api/src/main/python/dist/
 __pycache__
-.cursor/
\ No newline at end of file
+.cursor/
+
+# Develocity
+.mvn/.develocity/
diff --git a/.mvn/develocity.xml b/.mvn/develocity.xml
new file mode 100644
index 0000000000..8e73aa0558
--- /dev/null
+++ b/.mvn/develocity.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+<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";>
+    <projectId>nifi</projectId>
+    <server>
+        <url>https://develocity.apache.org</url>
+    </server>
+    <buildScan>
+        
<backgroundBuildScanUpload>#{isFalse(env['GITHUB_ACTIONS'])}</backgroundBuildScanUpload>
+        <publishing>
+            <onlyIf>authenticated</onlyIf>
+        </publishing>
+        <obfuscation>
+            <ipAddresses>#{{'0.0.0.0'}}</ipAddresses>
+        </obfuscation>
+    </buildScan>
+    <buildCache>
+        <local>
+            <enabled>#{isFalse(env['GITHUB_ACTIONS'])}</enabled>
+        </local>
+        <remote>
+            <enabled>false</enabled>
+        </remote>
+    </buildCache>
+</develocity>
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
new file mode 100644
index 0000000000..3eddf27e9f
--- /dev/null
+++ b/.mvn/extensions.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+            xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 
http://maven.apache.org/xsd/core-extensions-1.0.0.xsd";>
+    <extension>
+        <groupId>com.gradle</groupId>
+        <artifactId>develocity-maven-extension</artifactId>
+        <version>2.1</version>
+    </extension>
+    <extension>
+        <groupId>com.gradle</groupId>
+        <artifactId>common-custom-user-data-maven-extension</artifactId>
+        <version>2.0.5</version>
+    </extension>
+</extensions>

Reply via email to