diff --git a/build.gradle b/build.gradle index 3a2e4d071..19fb6afe4 100644 --- a/build.gradle +++ b/build.gradle @@ -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 'm.geipel@dnb.de' - url 'https://github.com/mgeipel' - roles { - role 'architect' - role 'developer' - } - } - developer { - id 'cboehme' - name 'Christoph Böhme' - email 'c.boehme@dnb.de' - 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' } }