Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update developer and organization data #363

Merged
merged 2 commits into from
May 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 42 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017 Christoph Böhme
* Copyright 2017, 2021 Christoph Böhme et al.
*
* Licensed under the Apache License, Version 2.0 the "License";
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -49,7 +49,6 @@ subprojects {
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}

task sourceJar(type: Jar) {
dependsOn tasks.classes
from sourceSets.main.allJava
Expand Down Expand Up @@ -99,7 +98,7 @@ gradle.projectsEvaluated {
if (project.description) {
description project.description
}
url 'https://github.com/culturegraph/metafacture-core'
url 'https://github.com/metafacture/metafacture-core'
inceptionYear '2011'
developers {
developer {
Expand All @@ -111,6 +110,10 @@ gradle.projectsEvaluated {
role 'architect'
role 'developer'
}
organization {
name 'Deutsche Nationalbibliothek'
url 'http://dnb.de/'
}
}
developer {
id 'cboehme'
Expand All @@ -121,11 +124,43 @@ gradle.projectsEvaluated {
role 'architect'
role 'developer'
}
organization {
name 'Deutsche Nationalbibliothek'
url 'http://dnb.de/'
}
}
developer {
id 'fsteeg'
name 'Fabian Steeg'
email 'steeg@hbz-nrw.de'
url 'https://github.com/fsteeg'
roles {
role 'developer'
role 'maintainer'
}
organization {
name 'Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen (hbz)'
url 'https://www.hbz-nrw.de/'
}
}
developer {
id 'dr0i'
name 'Pascal Christoph'
email 'christoph@hbz-nrw.de'
url 'https://github.com/dr0i'
roles {
role 'developer'
role 'maintainer'
}
organization {
name 'Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen (hbz)'
url 'https://www.hbz-nrw.de/'
}
}
}
organization {
name 'Deutsche Nationalbibliothek'
url 'http://dnb.de/'
name 'Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen (hbz)'
url 'https://www.hbz-nrw.de/'
}
licenses {
license {
Expand Down Expand Up @@ -153,8 +188,8 @@ gradle.projectsEvaluated {
url 'https://github.com/metafacture/metafacture-core/issues'
}
ciManagement {
system 'Travis CI'
url 'https://travis-ci.org/metafacture/metafacture-core'
system 'Github Actions'
url 'https://github.com/metafacture/metafacture-core/actions'
}
}

Expand Down