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 384bff7 commit 8c1769b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 0 additions & 6 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 @@ -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 <https://www.apache.org/licenses/LICENSE-2.0>

Expand Down
10 changes: 10 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 @@ -9,13 +10,22 @@ plugins {

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("resource")

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

0 comments on commit 8c1769b

Please sign in to comment.