forked from metafacture/metafacture-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|