-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// !! THIS FILE WAS GENERATED USING repoman !! | ||
// Modify `repo.yaml` instead and use `repoman` to update this file | ||
// See: https://github.com/metaborg/metaborg-gradle/ | ||
|
||
import org.metaborg.convention.Person | ||
import org.metaborg.convention.MavenPublishConventionExtension | ||
|
||
|
@@ -6,16 +10,20 @@ import org.metaborg.convention.MavenPublishConventionExtension | |
plugins { | ||
id("org.metaborg.convention.root-project") | ||
alias(libs.plugins.gitonium) | ||
alias(libs.plugins.spoofax.gradle.langspec) apply false | ||
} | ||
|
||
rootProjectConvention { | ||
// Add `publishAll` and `publish` tasks that delegate to the subprojects and included builds. | ||
registerPublishTasks.set(true) | ||
} | ||
allprojects { | ||
apply(plugin = "org.metaborg.gitonium") | ||
|
||
// Configure Gitonium before setting the version | ||
gitonium { | ||
mainBranch.set("master") | ||
} | ||
|
||
version = gitonium.version | ||
group = "org.metaborg" | ||
|
||
|
@@ -27,8 +35,12 @@ allprojects { | |
metadata { | ||
inceptionYear.set("2018") | ||
developers.set(listOf( | ||
Person("Gohla", "Gabriel Konat", "[email protected]"), | ||
Person("Virtlink", "Daniel A. A. Pelsmaeker", "[email protected]"), | ||
Person("Jeff Smits", email = null, id = "Apanatshka"), | ||
)) | ||
contributors.set(listOf( | ||
Person("Gabriel Konat", email = null, id = "Gohla"), | ||
Person("Daniel A. A. Pelsmaeker", email = null, id = "Virtlink"), | ||
Person("Jeff Smits", email = null, id = "Apanatshka"), | ||
)) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters