From d8974906c7ca255e419430d3c1b66c67b3943ee9 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Wed, 11 Dec 2024 08:35:46 +0100 Subject: [PATCH] DEBUG --- .mvn/extensions.xml | 30 +++++++++++++++--------------- Jenkinsfile | 4 +++- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml index 5ac1d42dd..000b6652a 100644 --- a/.mvn/extensions.xml +++ b/.mvn/extensions.xml @@ -1,17 +1,17 @@ - - com.gradle - develocity-maven-extension - 1.22.2 - - - com.gradle - common-custom-user-data-maven-extension - 2.0.1 - - - org.hibernate.infra.develocity - hibernate-develocity-maven-extension - 3.0.1.Final - + + + + + + + + + + + + + + + diff --git a/Jenkinsfile b/Jenkinsfile index a5af5f8b0..ff0f6cdd9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,7 +245,8 @@ stage('Default build') { return } runBuildOnNode { - withMavenWorkspace(mavenSettingsConfig: deploySnapshot ? helper.configuration.file.deployment.maven.settingsId : null) { + withMavenWorkspace(mavenSettingsFilePath: '.github/mvn-settings.xml') { + sh "mvn -v" mvn """ \ clean \ --fail-at-end \ @@ -259,6 +260,7 @@ stage('Default build') { -Pjqassistant -Pci-build \ ${enableDefaultBuildIT ? '' : '-DskipITs'} \ ${toTestJdkArg(environments.content.jdk.default)} \ + -X \ """ dir(helper.configuration.maven.localRepositoryPath) {