Skip to content

Commit

Permalink
rename mockk-platform-tools -> mockk-core
Browse files Browse the repository at this point in the history
  • Loading branch information
aSemy committed Sep 6, 2022
1 parent df2ccd4 commit 1badf45
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/mockk-agent-android/build.gradle.kts
Expand Up @@ -45,7 +45,7 @@ dependencies {
api(projects.modules.mockkAgentApi)
api(projects.modules.mockkAgent)

implementation(projects.modules.mockkPlatformTools)
implementation(projects.modules.mockkCore)

implementation(kotlin("reflect"))
implementation("com.linkedin.dexmaker:dexmaker:${buildsrc.config.Deps.Versions.dexmaker}")
Expand Down
2 changes: 1 addition & 1 deletion modules/mockk-agent/build.gradle.kts
Expand Up @@ -24,7 +24,7 @@ kotlin {
dependencies {
api(projects.modules.mockkAgentApi)
implementation(kotlin("reflect"))
implementation(projects.modules.mockkPlatformTools)
implementation(projects.modules.mockkCore)
}
}
val commonTest by getting {
Expand Down
File renamed without changes.
Expand Up @@ -6,9 +6,9 @@ plugins {
buildsrc.convention.`mockk-publishing`
}

description = "MockK tools that are used by other MockK modules"
description = "MockK functionality that is used by other MockK modules"

val mavenName: String by extra("MockK Platform Tools")
val mavenName: String by extra("MockK Core")
val mavenDescription: String by extra("${project.description}")

kotlin {
Expand Down
2 changes: 1 addition & 1 deletion modules/mockk-dsl/build.gradle.kts
Expand Up @@ -20,7 +20,7 @@ kotlin {
implementation(dependencies.platform(Deps.Libs.kotlinCoroutinesBom))
implementation(Deps.Libs.kotlinCoroutinesCore)
implementation(kotlin("reflect"))
implementation(projects.modules.mockkPlatformTools)
implementation(projects.modules.mockkCore)
}
}
val commonTest by getting {
Expand Down
2 changes: 1 addition & 1 deletion modules/mockk/build.gradle.kts
Expand Up @@ -22,7 +22,7 @@ kotlin {
api(projects.modules.mockkDsl)
api(projects.modules.mockkAgent)
api(projects.modules.mockkAgentApi)
api(projects.modules.mockkPlatformTools)
api(projects.modules.mockkCore)

implementation(dependencies.platform(Deps.Libs.kotlinCoroutinesBom))
implementation(Deps.Libs.kotlinCoroutinesCore)
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Expand Up @@ -14,7 +14,7 @@ include(
":modules:mockk",
":modules:mockk-agent-api",
":modules:mockk-agent",
":modules:mockk-platform-tools",
":modules:mockk-core",
":modules:mockk-dsl",

":test-modules:client-tests",
Expand Down

0 comments on commit 1badf45

Please sign in to comment.