Skip to content

Commit 7f6a635

Browse files
committed
Update license and developer info
1 parent 64526ae commit 7f6a635

File tree

5 files changed

+20
-21
lines changed

5 files changed

+20
-21
lines changed

NOTICE

Lines changed: 0 additions & 5 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ You should also push the release tag you made such that this release is reproduc
428428

429429

430430
## License
431-
Copyright 2018-2024 Delft University of Technology
431+
Copyright 2018-2024 [Programming Languages Group](https://pl.ewi.tudelft.nl/), [Delft University of Technology](https://www.tudelft.nl/)
432432

433433
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 <https://www.apache.org/licenses/LICENSE-2.0>
434434

build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import org.metaborg.convention.Developer
12
import org.metaborg.convention.MavenPublishConventionExtension
23

34
// Workaround for issue: https://youtrack.jetbrains.com/issue/KTIJ-19369
@@ -22,6 +23,14 @@ allprojects {
2223
extensions.configure(MavenPublishConventionExtension::class.java) {
2324
repoOwner.set("metaborg")
2425
repoName.set("coronium")
26+
27+
metadata {
28+
inceptionYear.set("2018")
29+
developers.set(listOf(
30+
Developer("Gohla", "Gabriel Konat", "gabrielkonat@gmail.com"),
31+
Developer("Virtlink", "Daniel A. A. Pelsmaeker", "developer@pelsmaeker.net"),
32+
))
33+
}
2534
}
2635
}
2736
}

coronium/build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.metaborg.convention.Developer
2+
13
// Workaround for issue: https://youtrack.jetbrains.com/issue/KTIJ-19369
24
@Suppress("DSL_SCOPE_VIOLATION")
35
plugins {
@@ -20,6 +22,14 @@ group = "org.metaborg"
2022
mavenPublishConvention {
2123
repoOwner.set("metaborg")
2224
repoName.set("coronium")
25+
26+
metadata {
27+
inceptionYear.set("2018")
28+
developers.set(listOf(
29+
Developer("Gohla", "Gabriel Konat", "gabrielkonat@gmail.com"),
30+
Developer("Virtlink", "Daniel A. A. Pelsmaeker", "developer@pelsmaeker.net"),
31+
))
32+
}
2333
}
2434

2535
gradlePlugin {

examples/build.gradle.kts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,14 @@ import org.metaborg.convention.MavenPublishConventionExtension
44
@Suppress("DSL_SCOPE_VIOLATION")
55
plugins {
66
id("org.metaborg.convention.root-project")
7-
alias(libs.plugins.gitonium)
87

98
// Set versions for plugins to use, only applying them in subprojects (apply false here).
109
id("org.metaborg.coronium.bundle") apply false // No version: use the plugin from the included composite build
1110
id("org.metaborg.coronium.feature") apply false
1211
}
1312

14-
gitonium {
15-
mainBranch.set("master")
16-
}
1713

1814
allprojects {
19-
apply(plugin = "org.metaborg.gitonium")
20-
version = gitonium.version
21-
group = "org.metaborg"
22-
23-
pluginManager.withPlugin("org.metaborg.convention.maven-publish") {
24-
extensions.configure(MavenPublishConventionExtension::class.java) {
25-
repoOwner.set("metaborg")
26-
repoName.set("coronium")
27-
}
28-
}
29-
3015
// Disable actual publishing tasks to prevent this repository from being actually published.
3116
tasks.all {
3217
if (name.contains("publish") && !name.contains("ToMavenLocal")) {

0 commit comments

Comments
 (0)