diff --git a/NOTICE b/NOTICE deleted file mode 100644 index cfcb836..0000000 --- a/NOTICE +++ /dev/null @@ -1,5 +0,0 @@ -Coronium -Copyright (C) 2020 Delft University of Technology - -This project includes software developed at the Programming Languages -Group (https://pl.ewi.tudelft.nl/) at TU Delft (https://www.tudelft.nl). diff --git a/README.md b/README.md index 001f519..6533066 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ The `example` directory of this repository has several examples using this plugi ## License -Copyright 2020-2024 Delft University of Technology +Copyright 2020-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 8313894..25b155f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,6 +10,11 @@ plugins { allprojects { apply(plugin = "org.metaborg.gitonium") + // Configure Gitonium before setting the version + gitonium { + mainBranch.set("master") + } + version = gitonium.version group = "org.metaborg.devenv" @@ -17,6 +22,14 @@ allprojects { extensions.configure(MavenPublishConventionExtension::class.java) { repoOwner.set("metaborg") repoName.set("spoofax.gradle") + + metadata { + inceptionYear.set("2019") + developers.set(listOf( + Developer("Gohla", "Gabriel Konat", "gabrielkonat@gmail.com"), + Developer("Virtlink", "Daniel A. A. Pelsmaeker", "developer@pelsmaeker.net"), + )) + } } } } diff --git a/example/build.gradle.kts b/example/build.gradle.kts index 41642c6..a2a32d3 100644 --- a/example/build.gradle.kts +++ b/example/build.gradle.kts @@ -2,16 +2,9 @@ @Suppress("DSL_SCOPE_VIOLATION") plugins { id("org.metaborg.convention.root-project") - alias(libs.plugins.gitonium) // Set versions for plugins to use, only applying them in subprojects (apply false here). id("org.metaborg.devenv.spoofax.gradle.langspec") apply false // No version: use the plugin from the included composite build id("org.metaborg.devenv.spoofax.gradle.project") apply false id("org.metaborg.devenv.spoofax.gradle.test") apply false } - -allprojects { - apply(plugin = "org.metaborg.gitonium") - version = gitonium.version - group = "org.metaborg.devenv" -}