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.
Merge metafacture#363 from '311-updateDevelopersData' of https://gith…
- Loading branch information
Showing
1 changed file
with
6 additions
and
29 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
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. | ||
|
@@ -49,7 +49,6 @@ subprojects { | |
tasks.withType(JavaCompile) { | ||
options.encoding = 'UTF-8' | ||
} | ||
|
||
task sourceJar(type: Jar) { | ||
dependsOn tasks.classes | ||
from sourceSets.main.allJava | ||
|
@@ -99,33 +98,11 @@ 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 { | ||
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 'Deutsche Nationalbibliothek' | ||
url 'http://dnb.de/' | ||
name 'Metafacture' | ||
url 'https://github.com/metafacture' | ||
} | ||
licenses { | ||
license { | ||
|
@@ -153,8 +130,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' | ||
} | ||
} | ||
|
||
|