0.9.0 #11
@ -11,6 +11,7 @@ import org.jetbrains.dokka.gradle.DokkaTask
|
|||||||
import kotlin.collections.component1
|
import kotlin.collections.component1
|
||||||
import kotlin.collections.component2
|
import kotlin.collections.component2
|
||||||
|
|
||||||
|
@Suppress("unused")
|
||||||
class KSciencePublishingExtension(val project: Project) {
|
class KSciencePublishingExtension(val project: Project) {
|
||||||
var vcs: String? by project.extra
|
var vcs: String? by project.extra
|
||||||
|
|
||||||
@ -126,12 +127,8 @@ open class KScienceProjectPlugin : Plugin<Project> {
|
|||||||
appendln("<hr/>")
|
appendln("<hr/>")
|
||||||
}
|
}
|
||||||
|
|
||||||
val rootReadmeProperties: Map<String, Any?> = mapOf(
|
val rootReadmeProperties: Map<String, Any?> =
|
||||||
"name" to project.name,
|
rootReadmeExtension.properties + ("modules" to modulesString)
|
||||||
"group" to project.group,
|
|
||||||
"version" to project.version,
|
|
||||||
"modules" to modulesString
|
|
||||||
)
|
|
||||||
|
|
||||||
readmeFile.writeText(
|
readmeFile.writeText(
|
||||||
SimpleTemplateEngine().createTemplate(rootReadmeExtension.readmeTemplate)
|
SimpleTemplateEngine().createTemplate(rootReadmeExtension.readmeTemplate)
|
||||||
@ -155,7 +152,7 @@ open class KScienceProjectPlugin : Plugin<Project> {
|
|||||||
dependsOn(generateReadme)
|
dependsOn(generateReadme)
|
||||||
|
|
||||||
val publicationPlatform = project.findProperty("ci.publication.platform") as? String
|
val publicationPlatform = project.findProperty("ci.publication.platform") as? String
|
||||||
val publicationName = if(publicationPlatform == null){
|
val publicationName = if (publicationPlatform == null) {
|
||||||
"AllPublications"
|
"AllPublications"
|
||||||
} else {
|
} else {
|
||||||
publicationPlatform.capitalize() + "Publication"
|
publicationPlatform.capitalize() + "Publication"
|
||||||
|
@ -15,190 +15,196 @@ private fun Project.isSnapshot() = version.toString().contains("dev") || version
|
|||||||
|
|
||||||
open class KSciencePublishingPlugin : Plugin<Project> {
|
open class KSciencePublishingPlugin : Plugin<Project> {
|
||||||
|
|
||||||
override fun apply(project: Project): Unit = project.afterEvaluate {
|
override fun apply(project: Project): Unit {
|
||||||
if (plugins.findPlugin("maven-publish") == null) {
|
project.run {
|
||||||
plugins.apply("maven-publish")
|
if (plugins.findPlugin("maven-publish") == null) {
|
||||||
|
plugins.apply("maven-publish")
|
||||||
|
}
|
||||||
|
configure<PublishingExtension> {
|
||||||
|
plugins.withId("org.jetbrains.kotlin.js") {
|
||||||
|
val kotlin = extensions.findByType<KotlinJsProjectExtension>()!!
|
||||||
|
|
||||||
|
val sourcesJar: Jar by project.tasks.creating(Jar::class) {
|
||||||
|
archiveClassifier.set("sources")
|
||||||
|
from(kotlin.sourceSets["main"].kotlin)
|
||||||
|
}
|
||||||
|
|
||||||
|
publications {
|
||||||
|
create("js", MavenPublication::class) {
|
||||||
|
from(components["kotlin"])
|
||||||
|
artifact(sourcesJar)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
plugins.withId("org.jetbrains.kotlin.jvm") {
|
||||||
|
val kotlin = extensions.findByType<KotlinJvmProjectExtension>()!!
|
||||||
|
|
||||||
|
val sourcesJar: Jar by project.tasks.creating(Jar::class) {
|
||||||
|
archiveClassifier.set("sources")
|
||||||
|
from(kotlin.sourceSets["main"].kotlin)
|
||||||
|
}
|
||||||
|
|
||||||
|
publications {
|
||||||
|
create("jvm", MavenPublication::class) {
|
||||||
|
from(components["kotlin"])
|
||||||
|
artifact(sourcesJar)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val githubOrg: String = project.findProperty("githubOrg") as? String ?: "mipt-npm"
|
project.afterEvaluate {
|
||||||
val githubProject: String? by project
|
|
||||||
val vcs = findProperty("vcs") as? String
|
|
||||||
?: githubProject?.let { "https://github.com/$githubOrg/$it" }
|
|
||||||
|
|
||||||
configure<PublishingExtension> {
|
val githubOrg: String = project.findProperty("githubOrg") as? String ?: "mipt-npm"
|
||||||
plugins.withId("org.jetbrains.kotlin.js") {
|
val githubProject: String? by project
|
||||||
val kotlin = extensions.findByType<KotlinJsProjectExtension>()!!
|
val vcs = findProperty("vcs") as? String
|
||||||
|
?: githubProject?.let { "https://github.com/$githubOrg/$it" }
|
||||||
|
|
||||||
val sourcesJar: Jar by project.tasks.creating(Jar::class) {
|
configure<PublishingExtension> {
|
||||||
archiveClassifier.set("sources")
|
val dokkaJar: Jar by tasks.creating(Jar::class) {
|
||||||
from(kotlin.sourceSets["main"].kotlin)
|
group = "documentation"
|
||||||
|
archiveClassifier.set("javadoc")
|
||||||
|
from(tasks.findByName("dokkaHtml"))
|
||||||
}
|
}
|
||||||
|
|
||||||
publications {
|
// Process each publication we have in this project
|
||||||
create("js", MavenPublication::class) {
|
publications.withType<MavenPublication>().forEach { publication ->
|
||||||
from(components["kotlin"])
|
publication.artifact(dokkaJar)
|
||||||
artifact(sourcesJar)
|
publication.pom {
|
||||||
}
|
name.set(project.name)
|
||||||
}
|
description.set(project.description ?: project.name)
|
||||||
}
|
vcs?.let { url.set(vcs) }
|
||||||
|
|
||||||
plugins.withId("org.jetbrains.kotlin.jvm") {
|
licenses {
|
||||||
val kotlin = extensions.findByType<KotlinJvmProjectExtension>()!!
|
license {
|
||||||
|
name.set("The Apache Software License, Version 2.0")
|
||||||
val sourcesJar: Jar by project.tasks.creating(Jar::class) {
|
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
|
||||||
archiveClassifier.set("sources")
|
distribution.set("repo")
|
||||||
from(kotlin.sourceSets["main"].kotlin)
|
}
|
||||||
}
|
|
||||||
|
|
||||||
publications {
|
|
||||||
create("jvm", MavenPublication::class) {
|
|
||||||
from(components["kotlin"])
|
|
||||||
artifact(sourcesJar)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val dokkaJar: Jar by tasks.creating(Jar::class) {
|
|
||||||
group = "documentation"
|
|
||||||
archiveClassifier.set("javadoc")
|
|
||||||
from(tasks.findByName("dokkaHtml"))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Process each publication we have in this project
|
|
||||||
publications.withType<MavenPublication>().forEach { publication ->
|
|
||||||
publication.artifact(dokkaJar)
|
|
||||||
publication.pom {
|
|
||||||
name.set(project.name)
|
|
||||||
description.set(project.description ?: project.name)
|
|
||||||
vcs?.let { url.set(vcs) }
|
|
||||||
|
|
||||||
licenses {
|
|
||||||
license {
|
|
||||||
name.set("The Apache Software License, Version 2.0")
|
|
||||||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
|
|
||||||
distribution.set("repo")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
developers {
|
|
||||||
developer {
|
|
||||||
id.set("MIPT-NPM")
|
|
||||||
name.set("MIPT nuclear physics methods laboratory")
|
|
||||||
organization.set("MIPT")
|
|
||||||
organizationUrl.set("http://npm.mipt.ru")
|
|
||||||
}
|
}
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id.set("MIPT-NPM")
|
||||||
|
name.set("MIPT nuclear physics methods laboratory")
|
||||||
|
organization.set("MIPT")
|
||||||
|
organizationUrl.set("http://npm.mipt.ru")
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
vcs?.let {
|
vcs?.let {
|
||||||
scm {
|
scm {
|
||||||
url.set(vcs)
|
url.set(vcs)
|
||||||
tag.set(project.version.toString())
|
tag.set(project.version.toString())
|
||||||
//developerConnection = "scm:git:[fetch=]/*ВАША ССЫЛКА НА .git файл*/[push=]/*Повторить предыдущую ссылку*/"
|
//developerConnection = "scm:git:[fetch=]/*ВАША ССЫЛКА НА .git файл*/[push=]/*Повторить предыдущую ссылку*/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
val githubUser: String? by project
|
val githubUser: String? by project
|
||||||
val githubToken: String? by project
|
val githubToken: String? by project
|
||||||
|
|
||||||
if (githubProject != null && githubUser != null && githubToken != null) {
|
if (githubProject != null && githubUser != null && githubToken != null) {
|
||||||
project.logger.info("Adding github publishing to project [${project.name}]")
|
project.logger.info("Adding github publishing to project [${project.name}]")
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
name = "github"
|
name = "github"
|
||||||
url = uri("https://maven.pkg.github.com/mipt-npm/$githubProject/")
|
url = uri("https://maven.pkg.github.com/mipt-npm/$githubProject/")
|
||||||
credentials {
|
credentials {
|
||||||
username = githubUser
|
username = githubUser
|
||||||
password = githubToken
|
password = githubToken
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
val spaceRepo: String? by project
|
val spaceRepo: String? by project
|
||||||
val spaceUser: String? by project
|
val spaceUser: String? by project
|
||||||
val spaceToken: String? by project
|
val spaceToken: String? by project
|
||||||
|
|
||||||
if (spaceRepo != null && spaceUser != null && spaceToken != null) {
|
if (spaceRepo != null && spaceUser != null && spaceToken != null) {
|
||||||
project.logger.info("Adding mipt-npm Space publishing to project [${project.name}]")
|
project.logger.info("Adding mipt-npm Space publishing to project [${project.name}]")
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
name = "space"
|
name = "space"
|
||||||
url = uri(spaceRepo!!)
|
url = uri(spaceRepo!!)
|
||||||
credentials {
|
credentials {
|
||||||
username = spaceUser
|
username = spaceUser
|
||||||
password = spaceToken
|
password = spaceToken
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val bintrayOrg = project.findProperty("bintrayOrg") as? String ?: "mipt-npm"
|
|
||||||
val bintrayUser: String? by project
|
|
||||||
val bintrayApiKey: String? by project
|
|
||||||
val bintrayPublish: String? by project
|
|
||||||
|
|
||||||
val bintrayRepo = if (isSnapshot()) {
|
|
||||||
"dev"
|
|
||||||
} else {
|
|
||||||
findProperty("bintrayRepo") as? String
|
|
||||||
}
|
|
||||||
|
|
||||||
val projectName = project.name
|
|
||||||
|
|
||||||
if (bintrayPublish == "true" && bintrayRepo != null && bintrayUser != null && bintrayApiKey != null) {
|
|
||||||
project.logger.info("Adding bintray publishing to project [$projectName]")
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
maven {
|
|
||||||
name = "bintray"
|
|
||||||
url = uri(
|
|
||||||
"https://api.bintray.com/maven/$bintrayOrg/$bintrayRepo/$projectName/;publish=1;override=1"
|
|
||||||
)
|
|
||||||
credentials {
|
|
||||||
username = bintrayUser
|
|
||||||
password = bintrayApiKey
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
val sonatypePublish: String? by project
|
val bintrayOrg = project.findProperty("bintrayOrg") as? String ?: "mipt-npm"
|
||||||
val sonatypeUser: String? by project
|
val bintrayUser: String? by project
|
||||||
val sonatypePassword: String? by project
|
val bintrayApiKey: String? by project
|
||||||
|
val bintrayPublish: String? by project
|
||||||
|
|
||||||
val keyId: String? by project
|
val bintrayRepo = if (isSnapshot()) {
|
||||||
val signingKey: String? = project.findProperty("signingKey") as? String ?: System.getenv("signingKey")
|
"dev"
|
||||||
val signingKeyPassphrase: String? by project
|
|
||||||
|
|
||||||
if (sonatypePublish == "true" && sonatypeUser != null && sonatypePassword != null) {
|
|
||||||
val sonatypeRepo: String = if (isSnapshot()) {
|
|
||||||
"https://oss.sonatype.org/content/repositories/snapshots"
|
|
||||||
} else {
|
} else {
|
||||||
"https://oss.sonatype.org/service/local/staging/deploy/maven2"
|
findProperty("bintrayRepo") as? String
|
||||||
}
|
}
|
||||||
|
|
||||||
if (plugins.findPlugin("signing") == null) {
|
val projectName = project.name
|
||||||
plugins.apply("signing")
|
|
||||||
|
if (bintrayPublish == "true" && bintrayRepo != null && bintrayUser != null && bintrayApiKey != null) {
|
||||||
|
project.logger.info("Adding bintray publishing to project [$projectName]")
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name = "bintray"
|
||||||
|
url = uri(
|
||||||
|
"https://api.bintray.com/maven/$bintrayOrg/$bintrayRepo/$projectName/;publish=1;override=1"
|
||||||
|
)
|
||||||
|
credentials {
|
||||||
|
username = bintrayUser
|
||||||
|
password = bintrayApiKey
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extensions.configure<SigningExtension>("signing") {
|
val sonatypePublish: String? by project
|
||||||
if (!signingKey.isNullOrBlank()) {
|
val sonatypeUser: String? by project
|
||||||
//if key is provided, use it
|
val sonatypePassword: String? by project
|
||||||
@Suppress("UnstableApiUsage")
|
|
||||||
useInMemoryPgpKeys(keyId, signingKey, signingKeyPassphrase)
|
|
||||||
} // else use file signing
|
|
||||||
sign(publications)
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
val keyId: String? by project
|
||||||
maven {
|
val signingKey: String? = project.findProperty("signingKey") as? String ?: System.getenv("signingKey")
|
||||||
name = "sonatype"
|
val signingKeyPassphrase: String? by project
|
||||||
url = uri(sonatypeRepo)
|
|
||||||
credentials {
|
if (sonatypePublish == "true" && sonatypeUser != null && sonatypePassword != null) {
|
||||||
username = sonatypeUser
|
val sonatypeRepo: String = if (isSnapshot()) {
|
||||||
password = sonatypePassword
|
"https://oss.sonatype.org/content/repositories/snapshots"
|
||||||
|
} else {
|
||||||
|
"https://oss.sonatype.org/service/local/staging/deploy/maven2"
|
||||||
|
}
|
||||||
|
|
||||||
|
if (plugins.findPlugin("signing") == null) {
|
||||||
|
plugins.apply("signing")
|
||||||
|
}
|
||||||
|
|
||||||
|
extensions.configure<SigningExtension>("signing") {
|
||||||
|
if (!signingKey.isNullOrBlank()) {
|
||||||
|
//if key is provided, use it
|
||||||
|
@Suppress("UnstableApiUsage")
|
||||||
|
useInMemoryPgpKeys(keyId, signingKey, signingKeyPassphrase)
|
||||||
|
} // else use file signing
|
||||||
|
sign(publications)
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name = "sonatype"
|
||||||
|
url = uri(sonatypeRepo)
|
||||||
|
credentials {
|
||||||
|
username = sonatypeUser
|
||||||
|
password = sonatypePassword
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user