From 8c1769b4665eb4924c885b14819b956369fe6c6a Mon Sep 17 00:00:00 2001 From: "Daniel A. A. Pelsmaeker" Date: Wed, 24 Jul 2024 14:10:40 +0200 Subject: [PATCH] Update license and developer info --- NOTICE | 6 ------ README.md | 2 +- build.gradle.kts | 10 ++++++++++ 3 files changed, 11 insertions(+), 7 deletions(-) delete mode 100644 NOTICE diff --git a/NOTICE b/NOTICE deleted file mode 100644 index 71c22e7..0000000 --- a/NOTICE +++ /dev/null @@ -1,6 +0,0 @@ -Spoofax -Copyright 2019 Delft University of Technology - -This project includes software developed at the Programming -Languages Group at Delft University of Technology -(http://www.tudelft.nl). diff --git a/README.md b/README.md index bd2454a..85283b8 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ A resource/filesystem abstraction for Metaborg projects. ## License -Copyright 2018-2024 Delft University of Technology +Copyright 2018-2024 [Programming Languages Group](https://pl.ewi.tudelft.nl/), [Delft University of Technology](https://www.tudelft.nl/) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/build.gradle.kts b/build.gradle.kts index 24b70db..749d105 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,3 +1,4 @@ +import org.metaborg.convention.Developer import org.metaborg.convention.MavenPublishConventionExtension // Workaround for issue: https://youtrack.jetbrains.com/issue/KTIJ-19369 @@ -9,6 +10,7 @@ plugins { allprojects { apply(plugin = "org.metaborg.gitonium") + version = gitonium.version group = "org.metaborg" @@ -16,6 +18,14 @@ allprojects { extensions.configure(MavenPublishConventionExtension::class.java) { repoOwner.set("metaborg") repoName.set("resource") + + metadata { + inceptionYear.set("2019") + developers.set(listOf( + Developer("Gohla", "Gabriel Konat", "gabrielkonat@gmail.com"), + Developer("Virtlink", "Daniel A. A. Pelsmaeker", "developer@pelsmaeker.net"), + )) + } } } }