Skip to content

Commit

Permalink
Fix Could not resolve com.bennyhuo.kotlin:ksp-module-support:1.7.10.2…
Browse files Browse the repository at this point in the history
…-SNAPSHOT (#5).
  • Loading branch information
bennyhuo committed Jul 16, 2023
1 parent 5565c94 commit 5cceb16
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ And then try to call the `deepCopy` function directly!

# Change Log

## v1.8.20-1.0.1

Fix dependencies error [#19](https://github.com/bennyhuo/KotlinDeepCopy/issues/19).

## v1.8.20-1.0.0

Build with Kotlin 1.8.20.
Expand Down
2 changes: 1 addition & 1 deletion annotations/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api("com.bennyhuo.kotlin:annotations-module-support:1.7.10.1")
api("com.bennyhuo.kotlin:annotations-module-support:1.8.20-1.0.0")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion compiler/compiler-apt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {

api project(":annotations")

api("com.bennyhuo.kotlin:apt-module-support:1.7.10.2-SNAPSHOT")
api("com.bennyhuo.kotlin:apt-module-support:1.8.20-1.0.0")

testApi group: 'junit', name: 'junit', version: '4.12'
}
Expand Down
2 changes: 1 addition & 1 deletion compiler/compiler-ksp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation("com.squareup:kotlinpoet:$kotlinPoetVersion")
implementation("com.squareup:kotlinpoet-ksp:$kotlinPoetVersion")

implementation("com.bennyhuo.kotlin:ksp-module-support:1.7.10.2-SNAPSHOT")
implementation("com.bennyhuo.kotlin:ksp-module-support:1.8.20-1.0.0")

implementation(project(":annotations"))
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kotlin.code.style=official

VERSION_NAME=1.8.20-1.0.0
VERSION_NAME=1.8.20-1.0.1

GROUP=com.bennyhuo.kotlin

Expand Down
10 changes: 6 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include ":reflect-impl-js"

include ":annotations"
include ":runtime"
include "test-common"
include ":test-common"

include ":compiler:compiler-ksp"
include ":compiler:compiler-apt"
Expand All @@ -35,9 +35,11 @@ include ":kcp-impl:plugin-ide"
def local = file("composite_build.local")
if (local.exists()) {
local.readLines().each {
def f = file("../$it")
if (f.exists()) {
includeBuild(f)
if (it != "") {
def f = file("../$it")
if (f.exists()) {
includeBuild(f)
}
}
}
}

0 comments on commit 5cceb16

Please sign in to comment.