Skip to content

Commit

Permalink
update deps...
Browse files Browse the repository at this point in the history
  • Loading branch information
astinz committed Sep 3, 2023
1 parent e01f462 commit 67db72c
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val pluginDirDesktop by extra { file("$projectDir/cmpe/desktop/build/plugin/sec") }

group = "xyz.mcxross.cohesive"
version = "0.1.0-alpha"
version = "0.1.0-prealpha"

allprojects {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion cmpe/android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ group

version

"0.1.0-alpha"
"0.1.0-prealpha"

repositories { mavenCentral() }

Expand Down
4 changes: 2 additions & 2 deletions cmpe/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {

group = "xyz.mcxross.cohesive"

version = "0.1.0-alpha"
version = "0.1.0-prealpha"

allOpen { annotation("org.openjdk.jmh.annotations.State") }

Expand Down Expand Up @@ -61,7 +61,7 @@ kotlin {
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
}
}
val androidTest by getting { dependencies { implementation("junit:junit:4.13.2") } }
val androidUnitTest by getting { dependencies { implementation("junit:junit:4.13.2") } }
val androidBenchmark by creating { dependsOn(androidMain) }
val desktopMain by getting {
dependencies {
Expand Down
6 changes: 3 additions & 3 deletions cmpe/csp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ plugins {
`java-library`
`maven-publish`
kotlin("jvm")
kotlin("plugin.serialization") version "1.8.0"
kotlin("plugin.serialization")
id("org.jetbrains.dokka")
}

group = "xyz.mcxross.cohesive.csp"

version = "0.1.0-alpha"
version = "0.1.0-prealpha"

repositories { mavenCentral() }

dependencies {
implementation(kotlin("stdlib"))
implementation("com.google.devtools.ksp:symbol-processing-api:1.8.0-1.0.9")
implementation("com.google.devtools.ksp:symbol-processing-api:1.9.0-1.0.13")
implementation(kotlin("reflect"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
}
Expand Down
2 changes: 1 addition & 1 deletion cmpe/desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

group = "xyz.mcxross.cohesive"

version = "0.1.0-alpha"
version = "0.1.0-prealpha"

kotlin {
jvm {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
android.useAndroidX=true
android.enableJetifier=true
kotlin.version=1.8.20
kotlin.version=1.9.0
agp.version=7.2.2
ksp.version=1.8.20-1.0.11
ksp.version=1.9.0-1.0.13
benchmark.version=0.4.4
compose.version=1.4.0
compose.version=1.5.0
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx2560m
kotlin.mpp.androidSourceSetLayoutVersion1.nowarn=true
ktorVersion=2.2.3
serializationVersion=1.4.0-RC
ktorVersion=2.3.4
serializationVersion=1.6.0
okioVersion=3.2.0
napierVersion=2.6.1

0 comments on commit 67db72c

Please sign in to comment.