diff --git a/README.md b/README.md index 82e891d..22d286a 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ [![License](https://img.shields.io/github/license/petertrr/kotlin-multiplatform-diff)](https://github.com/petertrr/kotlin-multiplatform-diff/blob/main/LICENSE) [![codecov](https://codecov.io/gh/petertrr/kotlin-multiplatform-diff/branch/main/graph/badge.svg)](https://codecov.io/gh/petertrr/kotlin-multiplatform-diff) +[![Releases](https://img.shields.io/github/v/release/petertrr/kotlin-multiplatform-diff)](https://github.com/petertrr/kotlin-multiplatform-diff/releases) +[![Maven Central](https://img.shields.io/maven-central/v/io.github.petertrr/kotlin-multiplatform-diff)](https://mvnrepository.com/artifact/io.github.petertrr) +[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin) + This is a port of [java-diff-utils](https://github.com/java-diff-utils/java-diff-utils) to kotlin with multiplatform support. All credit for the implementation goes to original authors. @@ -19,4 +23,4 @@ Currently, artifacts for the following platforms are supported: * JS (both browser and Node.js) * LinuxX64 * MingwX64 -* MacosX64 \ No newline at end of file +* MacosX64 diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 0000000..2f97914 --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,11 @@ +Library: +* [ ] More kotlin-way API + * [ ] Refactor DiffRowGenerator to use kotlin-dsl-style builder +* [x] Explicit API mode +* [ ] Working with files +* [ ] Binary compatibility validator for JVM +* [ ] Benchmarks on JVM to compare with the original library + +Infra: +* [ ] Static analysis (detekt, diktat) +* [ ] Git hooks \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/io/github/petertrr/PublishingConfiguration.kt b/buildSrc/src/main/kotlin/io/github/petertrr/PublishingConfiguration.kt index a164308..ba3554e 100644 --- a/buildSrc/src/main/kotlin/io/github/petertrr/PublishingConfiguration.kt +++ b/buildSrc/src/main/kotlin/io/github/petertrr/PublishingConfiguration.kt @@ -33,30 +33,37 @@ fun Project.configurePublishing() { } configurePublications() + + if (hasProperty("signingKey")) { + configureSigning() + } + if (hasProperty("sonatypeUsername")) { + configureNexusPublishing() + } + // https://kotlinlang.org/docs/mpp-publish-lib.html#avoid-duplicate-publications - val publicationsFromMainHost = listOf("jvm", "js", "kotlinMultiplatform") - configure { - publications { - matching { it.name in publicationsFromMainHost }.all { + // Publication with name `kotlinMultiplatform` is for the default artifact. + // `configureNexusPublishing` adds sonatype publication tasks inside `afterEvaluate`. + rootProject.afterEvaluate { + val publicationsFromMainHost = listOf("jvm", "js", "linuxX64", "kotlinMultiplatform", "metadata") + configure { + publications.matching { it.name in publicationsFromMainHost }.all { val targetPublication = this@all tasks.withType() .matching { it.publication == targetPublication } .configureEach { onlyIf { // main publishing CI job is executed on Linux host - DefaultNativePlatform.getCurrentOperatingSystem().isLinux + DefaultNativePlatform.getCurrentOperatingSystem().isLinux.apply { + if (!this) { + logger.lifecycle("Publication ${(it as AbstractPublishToMaven).publication.name} is skipped on current host") + } + } } } - } + } } } - - if (hasProperty("signingKey")) { - configureSigning() - } - if (hasProperty("sonatypeUsername")) { - configureNexusPublishing() - } } private fun Project.configurePublications() { diff --git a/gradle.properties b/gradle.properties index 5c4eaf8..b2251a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,4 @@ kotlin.code.style=official -org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 \ No newline at end of file +org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +org.gradle.parallel=true +org.gradle.vfs.watch=true \ No newline at end of file