From 8a677e97febdbae7cf80c5a52ef5cda51c8dc458 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Tue, 4 Oct 2022 16:21:33 -0500 Subject: [PATCH] Remove maven project level settings.xml (#338) A maven extension to allow project level settings.xml was previously added to fix an issue on Jenkins CI in https://github.com/spring-cloud/stream-applications/commit/9fbec999552fa1348460c806da65b6b74337e93f. However, this is now causing issues when importing project into IDEA. Jenkins will not be used for the CI system going forward - so removing the extension. --- .mvn/extensions.xml | 8 ---- .mvn/maven.config | 2 +- .mvn/settings.xml | 63 ---------------------------- .settings.xml | 68 ------------------------------- stream-applications-build/pom.xml | 52 +++++++++++++++++++++++ 5 files changed, 53 insertions(+), 140 deletions(-) delete mode 100644 .mvn/extensions.xml delete mode 100644 .mvn/settings.xml delete mode 100644 .settings.xml diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml deleted file mode 100644 index d587c783..00000000 --- a/.mvn/extensions.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - com.github.gzm55.maven - project-settings-extension - 0.2.3 - - diff --git a/.mvn/maven.config b/.mvn/maven.config index e75e5b08..3b8cf46e 100644 --- a/.mvn/maven.config +++ b/.mvn/maven.config @@ -1 +1 @@ --DaltSnapshotDeploymentRepository=repo.spring.io::default::https://repo.spring.io/libs-snapshot-local -P spring,spring-repos +-DaltSnapshotDeploymentRepository=repo.spring.io::default::https://repo.spring.io/libs-snapshot-local -P spring diff --git a/.mvn/settings.xml b/.mvn/settings.xml deleted file mode 100644 index 44f2ab85..00000000 --- a/.mvn/settings.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - spring-repos - - false - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/snapshot - - true - - - - spring-milestones - Spring Milestones - https://repo.spring.io/milestone - - false - - - - spring-releases - Spring Releases - https://repo.spring.io/release - - false - - - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/snapshot - - true - - - - spring-milestones - Spring Milestones - https://repo.spring.io/milestone - - false - - - - spring-releases - Spring Releases - https://repo.spring.io/release - - false - - - - - - diff --git a/.settings.xml b/.settings.xml deleted file mode 100644 index 0e3c1571..00000000 --- a/.settings.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - repo.spring.io - ${env.CI_DEPLOY_USERNAME} - ${env.CI_DEPLOY_PASSWORD} - - - - - - spring - - true - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/libs-snapshot-local - - true - - - - spring-milestones - Spring Milestones - https://repo.spring.io/libs-milestone-local - - false - - - - spring-releases - Spring Releases - https://repo.spring.io/release - - false - - - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/libs-snapshot-local - - true - - - - spring-milestones - Spring Milestones - https://repo.spring.io/libs-milestone-local - - false - - - - - - diff --git a/stream-applications-build/pom.xml b/stream-applications-build/pom.xml index b59440d1..fbc838e7 100644 --- a/stream-applications-build/pom.xml +++ b/stream-applications-build/pom.xml @@ -272,6 +272,58 @@ scm:git:ssh://git@github.com/pivotal/java-functions.git https://github.com/pivotal/java-functions + + + spring-snapshots + Spring Snapshots + https://repo.spring.io/libs-snapshot-local + + true + + + + spring-milestones + Spring milestones + https://repo.spring.io/libs-milestone-local + + false + + + + spring-releases + Spring Releases + https://repo.spring.io/release + + false + + + + + + spring-snapshots + Spring Snapshots + https://repo.spring.io/snapshot + + true + + + + spring-milestones + Spring Milestones + https://repo.spring.io/milestone + + false + + + + spring-releases + Spring Releases + https://repo.spring.io/release + + false + + + repo.spring.io