From 13c3ee31b5954bfe6ba4a64f1292e73ab5959f3e Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Fri, 26 Nov 2021 09:05:26 +0100 Subject: [PATCH] Fix build release (#397) Add gradle.properties to gitignore: The gradle.properties is used when doing releases. Doing releases is only possible with a clean git repo. Adding gradle.properties to gitignore provides both. Add "developers" into pom: The nexus repository manager insists on having the developers section in the pom. This commit reverts parts of 8710014c49abc94e98a1ec7bee4d14ac7c37aeb1 to have the developers section again. --- .gitignore | 2 ++ build.gradle | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/.gitignore b/.gitignore index 41256e67d..dccb3a8b0 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,5 @@ buildbot.keyring # Ignore VS code/codium config files .vscode +# Ignore files with sensitive data +gradle.properties diff --git a/build.gradle b/build.gradle index 8e497d8fd..a84e7ee95 100644 --- a/build.gradle +++ b/build.gradle @@ -143,6 +143,28 @@ gradle.projectsEvaluated { } url 'https://github.com/metafacture/metafacture-core' inceptionYear '2011' + developers { + developer { + id 'mgeipel' + name 'Markus M. Geipel' + email 'm.geipel@dnb.de' + url 'https://github.com/mgeipel' + roles { + role 'architect' + role 'developer' + } + } + developer { + id 'cboehme' + name 'Christoph Böhme' + email 'c.boehme@dnb.de' + url 'https://github.com/cboehme' + roles { + role 'architect' + role 'developer' + } + } + } organization { name 'Metafacture' url 'https://github.com/metafacture'