Skip to content

Commit

Permalink
Fix build release (metafacture#397)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dr0i committed Nov 26, 2021
1 parent 836ba80 commit 13c3ee3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ buildbot.keyring
# Ignore VS code/codium config files
.vscode

# Ignore files with sensitive data
gradle.properties
22 changes: 22 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,28 @@ gradle.projectsEvaluated {
}
url 'https://github.com/metafacture/metafacture-core'
inceptionYear '2011'
developers {
developer {
id 'mgeipel'
name 'Markus M. Geipel'
email '[email protected]'
url 'https://github.com/mgeipel'
roles {
role 'architect'
role 'developer'
}
}
developer {
id 'cboehme'
name 'Christoph Böhme'
email '[email protected]'
url 'https://github.com/cboehme'
roles {
role 'architect'
role 'developer'
}
}
}
organization {
name 'Metafacture'
url 'https://github.com/metafacture'
Expand Down

0 comments on commit 13c3ee3

Please sign in to comment.