-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update maven-publish convention plugin
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import org.metaborg.convention.Developer | ||
import org.metaborg.convention.Person | ||
import org.metaborg.convention.MavenPublishConventionExtension | ||
|
||
// Workaround for issue: https://youtrack.jetbrains.com/issue/KTIJ-19369 | ||
|
@@ -33,13 +33,13 @@ allprojects { | |
metadata { | ||
inceptionYear.set("2005") | ||
developers.set(listOf( | ||
Developer("jasperdenkers", "Jasper Denkers", "[email protected]"), | ||
Developer("mpsijm", "Maarten Sijm", "[email protected]"), | ||
Developer("karltk", "Karl Trygve Kalleberg", "[email protected]"), | ||
Developer("lennartcl", "Lennart Kats", "[email protected]"), | ||
Developer("maartje", "Maartje de Jonge", "[email protected]"), | ||
Developer("Gohla", "Gabriel Konat", "[email protected]"), | ||
Developer("udesou", "Eduardo Souza", "[email protected]"), | ||
Person("jasperdenkers", "Jasper Denkers", "[email protected]"), | ||
Person("mpsijm", "Maarten Sijm", "[email protected]"), | ||
Person("karltk", "Karl Trygve Kalleberg", "[email protected]"), | ||
Person("lennartcl", "Lennart Kats", "[email protected]"), | ||
Person("maartje", "Maartje de Jonge", "[email protected]"), | ||
Person("Gohla", "Gabriel Konat", "[email protected]"), | ||
Person("udesou", "Eduardo Souza", "[email protected]"), | ||
)) | ||
} | ||
} | ||
|