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

jhelou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a8b6185b3 [devscout] fixes syntax in profile extractor for gradle 
enteprise
4a8b6185b3 is described below

commit 4a8b6185b351329b9b64cf07fc344eaf306b1f2f
Author: Jean Helou <[email protected]>
AuthorDate: Tue Aug 27 16:58:42 2024 +0200

    [devscout] fixes syntax in profile extractor for gradle enteprise
---
 .mvn/gradle-enterprise-custom-user-data.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.mvn/gradle-enterprise-custom-user-data.groovy 
b/.mvn/gradle-enterprise-custom-user-data.groovy
index 33bd69f551..26fdcb4e8f 100644
--- a/.mvn/gradle-enterprise-custom-user-data.groovy
+++ b/.mvn/gradle-enterprise-custom-user-data.groovy
@@ -1,6 +1,6 @@
 //adds the profiles active in the reactor as buildScan tags
-session.getRequest().getActiveProfiles().stream().flatMap 
{it.getActiveProfiles()}.forEach { it->
-    buildScan.tag("P"+it.id)
+session.getRequest().activeProfiles.stream().forEach { it->
+    buildScan.tag("P"+it)
 }
 buildScan.value('parallel', session.parallel as String)
 buildScan.tag("T"+session.getRequest().getDegreeOfConcurrency())


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to