Skip to content

Commit 13c3ee3

Browse files
committed
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 8710014 to have the developers section again.
1 parent 836ba80 commit 13c3ee3

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,5 @@ buildbot.keyring
4848
# Ignore VS code/codium config files
4949
.vscode
5050

51+
# Ignore files with sensitive data
52+
gradle.properties

build.gradle

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,28 @@ gradle.projectsEvaluated {
143143
}
144144
url 'https://github.com/metafacture/metafacture-core'
145145
inceptionYear '2011'
146+
developers {
147+
developer {
148+
id 'mgeipel'
149+
name 'Markus M. Geipel'
150+
151+
url 'https://github.com/mgeipel'
152+
roles {
153+
role 'architect'
154+
role 'developer'
155+
}
156+
}
157+
developer {
158+
id 'cboehme'
159+
name 'Christoph Böhme'
160+
161+
url 'https://github.com/cboehme'
162+
roles {
163+
role 'architect'
164+
role 'developer'
165+
}
166+
}
167+
}
146168
organization {
147169
name 'Metafacture'
148170
url 'https://github.com/metafacture'

0 commit comments

Comments
 (0)