Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
natario1 committed Jun 6, 2024
1 parent 19d6946 commit c1dbb6e
Show file tree
Hide file tree
Showing 17 changed files with 7 additions and 89 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
distribution: temurin
cache: gradle
- name: Publish to Sonatype
run: ./gradlew deploySonatype --no-parallel
run: ./gradlew deploySonatype
- name: Publish to GitHub Packages
run: ./gradlew deployGithub
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
/.idea/artifacts
.DS_Store
/build
/captures
Expand Down
8 changes: 0 additions & 8 deletions .idea/artifacts/knee_annotations_frontend_0_1_0_rc1.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/knee_annotations_frontend_0_1_1_SNAPSHOT.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/knee_annotations_frontend_0_2_0_SNAPSHOT.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/artifacts/knee_annotations_frontend_0_3_0_SNAPSHOT.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/artifacts/knee_annotations_jvm_0_1_0_SNAPSHOT.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/artifacts/knee_annotations_jvm_0_1_1_SNAPSHOT.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/artifacts/knee_runtime_frontend_0_1_0_SNAPSHOT.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/knee_runtime_frontend_0_1_0_rc1.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/knee_runtime_frontend_0_1_1_SNAPSHOT.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/knee_runtime_frontend_0_2_0_SNAPSHOT.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/artifacts/knee_runtime_frontend_0_3_0_SNAPSHOT.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/knee_runtime_jvm_0_1_0_SNAPSHOT.xml

This file was deleted.

5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import io.deepmedia.tools.deployer.DeployerExtension
import io.deepmedia.tools.deployer.impl.SonatypeAuth
import io.deepmedia.tools.deployer.specs.SonatypeAuth

plugins {
kotlin("multiplatform") apply false
Expand All @@ -15,7 +15,7 @@ subprojects {
// Publishing
plugins.withId("io.deepmedia.tools.deployer") {
extensions.configure<DeployerExtension> {
verbose.set(false)
verbose.set(true)

projectInfo {
description.set("A Kotlin Compiler Plugin for seamless communication between Kotlin/Native and Kotlin/JVM.")
Expand All @@ -35,6 +35,7 @@ subprojects {

// use "deploySonatype" to deploy to OSSRH / maven central
sonatypeSpec {
syncToMavenCentral = true
auth.user.set(secret("SONATYPE_USER"))
auth.password.set(secret("SONATYPE_PASSWORD"))
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ kotlin.mpp.import.enableKgpDependencyResolution=true

android.useAndroidX=true

knee.version=1.0.0-rc1
knee.version=1.0.0
knee.group=io.deepmedia.tools.knee
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pluginManagement {
kotlin("multiplatform") version "2.0.0" apply false
kotlin("plugin.serialization") version "2.0.0" apply false
kotlin("jvm") version "2.0.0" apply false
id("io.deepmedia.tools.deployer") version "0.11.0" apply false
id("io.deepmedia.tools.deployer") version "0.12.0" apply false
}
}

Expand Down

0 comments on commit c1dbb6e

Please sign in to comment.