Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle platform #258

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 88 additions & 2 deletions gradle/platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
val a = node / "artifactId"
val v = node / "version"
api("$g:$a:$v")
// println("$g:$a:$v")
// println("$g:$a:$v")
}
}
}
Expand All @@ -43,8 +43,94 @@ publishing {
groupId = "org.scijava"
artifactId = "pom-scijava"
version = (effXml / "version").toString()

from(components["javaPlatform"])
pom {
name = "SciJava Parent POM"
description = "This POM provides a parent from which participating projects can declare their build configurations. It ensures that projects all use a compatible build environment, including Java version, as well as versions of dependencies and plugins."
url = "https://scijava.org/"
inceptionYear = "2011"
organization {
name = "SciJava"
url = "https://scijava.org/"
}
licenses {
license {
name = "Unlicense"
url = "https://unlicense.org/"
distribution = "repo"
}
}
developers {
developer {
id = "ctrueden"
name = "Curtis Rueden"
url = "https://imagej.net/people/ctrueden"
roles.addAll("founder", "lead", "developer", "debugger", "reviewer", "support", "maintainer")
}
}
contributors {
operator fun String.invoke(id: String) = contributor {
name = this@invoke
url = "https://imagej.net/people/$id"
properties = mapOf("id" to id)
}
"Mark Hiner"("hinerm")
"Johannes Schindelin"("dscho")
"Sébastien Besson"("sbesson")
"John Bogovic"("bogovicj")
"Nicolas Chiaruttini"("NicoKiaru")
"Barry DeZonia"("bdezonia")
"Richard Domander"("rimadoma")
"Karl Duderstadt"("karlduderstadt")
"Jan Eglinger"("imagejan")
"Gabriel Einsdorf"("gab1one")
"Tiago Ferreira"("tferr")
contributor {
name = "David Gault"
properties = mapOf("id" to "dgault")
}
"Ulrik Günther"("skalarproduktraum")
"Philipp Hanslovsky"("hanslovsky")
"Stefan Helfrich"("stelfrich")
"Cameron Lloyd"("camlloyd")
"Hadrien Mary"("hadim")
"Tobias Pietzsch"("tpietzsch")
"Stephan Preibisch"("StephanPreibisch")
"Stephan Saalfeld"("axtimwalde")
"Deborah Schmidt"("frauzufall")
"Lorenzo Scianatico"("LoreScianatico")
"Jean - Yves Tinevez"("tinevez")
"Christian Tischer"("tischi")
"Gabriella Turek"("turekg")
contributor {
name = "Giuseppe Barbieri"
properties = mapOf("id" to "elect")
}
}
mailingLists {
mailingList {
name = "SciJava"
subscribe = "https://groups.google.com/group/scijava"
unsubscribe = subscribe
post = "scijava@googlegroups.com"
archive = "https://groups.google.com/group/scijava"
}
}
scm {
connection = "scm:git:https://github.com/scijava/pom-scijava"
developerConnection = "scm:git:git@github.com:scijava/pom-scijava"
tag = "HEAD"
url = "https://github.com/scijava/pom-scijava"
}
issueManagement {
system = "GitHub Issues"
url = "https://github.com/scijava/pom-scijava/issues"
}
ciManagement {
system = "GitHub Actions"
url = "https: //github.com/scijava/pom-scijava/actions"
}
}
}
}
}
Expand Down
Loading