Skip to content

Commit

Permalink
Update license and developer info
Browse files Browse the repository at this point in the history
  • Loading branch information
Virtlink committed Jul 24, 2024
1 parent 64526ae commit 7f6a635
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 21 deletions.
5 changes: 0 additions & 5 deletions NOTICE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ You should also push the release tag you made such that this release is reproduc


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

Expand Down
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.metaborg.convention.Developer
import org.metaborg.convention.MavenPublishConventionExtension

// Workaround for issue: https://youtrack.jetbrains.com/issue/KTIJ-19369
Expand All @@ -22,6 +23,14 @@ allprojects {
extensions.configure(MavenPublishConventionExtension::class.java) {
repoOwner.set("metaborg")
repoName.set("coronium")

metadata {
inceptionYear.set("2018")
developers.set(listOf(
Developer("Gohla", "Gabriel Konat", "[email protected]"),
Developer("Virtlink", "Daniel A. A. Pelsmaeker", "[email protected]"),
))
}
}
}
}
10 changes: 10 additions & 0 deletions coronium/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.metaborg.convention.Developer

// Workaround for issue: https://youtrack.jetbrains.com/issue/KTIJ-19369
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
Expand All @@ -20,6 +22,14 @@ group = "org.metaborg"
mavenPublishConvention {
repoOwner.set("metaborg")
repoName.set("coronium")

metadata {
inceptionYear.set("2018")
developers.set(listOf(
Developer("Gohla", "Gabriel Konat", "[email protected]"),
Developer("Virtlink", "Daniel A. A. Pelsmaeker", "[email protected]"),
))
}
}

gradlePlugin {
Expand Down
15 changes: 0 additions & 15 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,14 @@ import org.metaborg.convention.MavenPublishConventionExtension
@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.coronium.bundle") apply false // No version: use the plugin from the included composite build
id("org.metaborg.coronium.feature") apply false
}

gitonium {
mainBranch.set("master")
}

allprojects {
apply(plugin = "org.metaborg.gitonium")
version = gitonium.version
group = "org.metaborg"

pluginManager.withPlugin("org.metaborg.convention.maven-publish") {
extensions.configure(MavenPublishConventionExtension::class.java) {
repoOwner.set("metaborg")
repoName.set("coronium")
}
}

// Disable actual publishing tasks to prevent this repository from being actually published.
tasks.all {
if (name.contains("publish") && !name.contains("ToMavenLocal")) {
Expand Down

0 comments on commit 7f6a635

Please sign in to comment.