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 78dc1df commit 5defbaa
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 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 @@ -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 <https://www.apache.org/licenses/LICENSE-2.0>

Expand Down
13 changes: 13 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,26 @@ plugins {
allprojects {
apply(plugin = "org.metaborg.gitonium")

// Configure Gitonium before setting the version
gitonium {
mainBranch.set("master")
}

version = gitonium.version
group = "org.metaborg.devenv"

pluginManager.withPlugin("org.metaborg.convention.maven-publish") {
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"),
))
}
}
}
}
7 changes: 0 additions & 7 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 5defbaa

Please sign in to comment.