Skip to content

Commit

Permalink
Merge pull request #4 from Funkatronics/fix-publishing
Browse files Browse the repository at this point in the history
fix publishing?
  • Loading branch information
Funkatronics authored Aug 16, 2023
2 parents 28473fe + db0dc77 commit d8f8ea6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("multiplatform").version("1.9.0").apply(false)
id("com.vanniktech.maven.publish") version "0.25.3"
kotlin("multiplatform") version "1.9.0" apply false
id("com.vanniktech.maven.publish") version "0.25.3" apply false
}

//tasks.register("clean", Delete::class) {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_CONNECT_TIMEOUT_SECONDS=60
SONATYPE_CLOSE_TIMEOUT_SECONDS=900

GROUP=io.github.funkatronics
POM_ARTIFACT_ID=rpccore
VERSION_NAME=0.1.0-SNAPSHOT
#GROUP=io.github.funkatronics
#POM_ARTIFACT_ID=rpccore
#VERSION_NAME=0.1.0-SNAPSHOT

POM_NAME=RpcCore
POM_DESCRIPTION=Multiplatform JSON RPC Library using Kotlin Serialization
Expand Down
5 changes: 5 additions & 0 deletions okiodriver/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
kotlin("multiplatform")
id("com.vanniktech.maven.publish")
}

group = "io.github.funkatronics"
Expand Down Expand Up @@ -33,3 +34,7 @@ kotlin {
val jvmTest by getting
}
}

mavenPublishing {
coordinates("io.github.funkatronics", "rpccore-okiodriver", "0.1.0-SNAPSHOT")
}
5 changes: 5 additions & 0 deletions rpccore/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
kotlin("multiplatform")
kotlin("plugin.serialization") version "1.9.0"
id("com.vanniktech.maven.publish")
}

group = "io.github.funkatronics"
Expand Down Expand Up @@ -52,3 +53,7 @@ kotlin {
// val nativeTest by getting
}
}

mavenPublishing {
coordinates("io.github.funkatronics", "rpccore", "0.1.0-SNAPSHOT")
}

0 comments on commit d8f8ea6

Please sign in to comment.