Skip to content

Commit

Permalink
refactor: rename engine modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitjes committed Aug 5, 2024
1 parent b9ce7dc commit 10e7fae
Show file tree
Hide file tree
Showing 118 changed files with 34 additions and 22 deletions.
10 changes: 5 additions & 5 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ subprojects {

dependencies {
kover(project(":kzmq-core"))
kover(project(":kzmq-cio"))
kover(project(":kzmq-libzmq"))
kover(project(":kzmq-engine-cio"))
kover(project(":kzmq-engine-jeromq"))
kover(project(":kzmq-engine-libzmq"))
kover(project(":kzmq-engine-zeromqjs"))
kover(project(":kzmq-tests"))
}
4 changes: 2 additions & 2 deletions kzmq-benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ kotlin {

jvmMain {
dependencies {
implementation(project(":kzmq-jeromq"))
implementation(project(":kzmq-cio"))
implementation(project(":kzmq-engine-jeromq"))
implementation(project(":kzmq-engine-cio"))
}
}
}
Expand Down

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#
# Copyright (c) 2024 Didier Villevalois and Kzmq contributors.
# Use of this source code is governed by the Apache 2.0 license.
#

org.zeromq.CIOEngineContainer
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#
# Copyright (c) 2024 Didier Villevalois and Kzmq contributors.
# Use of this source code is governed by the Apache 2.0 license.
#

org.zeromq.JeroMQEngineContainer
File renamed without changes.
File renamed without changes.

This file was deleted.

10 changes: 5 additions & 5 deletions kzmq-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,22 @@ kotlin {

jvmTest {
dependencies {
implementation(project(":kzmq-jeromq"))
implementation(project(":kzmq-cio"))
implementation(project(":kzmq-engine-jeromq"))
implementation(project(":kzmq-engine-cio"))
}
}

jsTest {
dependencies {
implementation(project(":kzmq-zeromqjs"))
implementation(project(":kzmq-engine-zeromqjs"))
}
}

targets.withType<KotlinNativeTarget>().forEach { target ->
getByName("${target.name}Test").apply {
dependencies {
if (target.konanTarget.isSupportedByLibzmq) implementation(project(":kzmq-libzmq"))
if (target.konanTarget.isSupportedByCIO) implementation(project(":kzmq-cio"))
if (target.konanTarget.isSupportedByLibzmq) implementation(project(":kzmq-engine-libzmq"))
if (target.konanTarget.isSupportedByCIO) implementation(project(":kzmq-engine-cio"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions kzmq-tools/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ kotlin {
commonMain {
dependencies {
implementation(project(":kzmq-core"))
implementation(project(":kzmq-cio"))
implementation(project(":kzmq-engine-cio"))
implementation(libs.kotlinx.io.core)
implementation(libs.kotlinx.cli)
}
}

jvmMain {
dependencies {
implementation(project(":kzmq-jeromq"))
implementation(project(":kzmq-engine-jeromq"))
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ rootProject.name = "kzmq"

include(":kzmq-core")
include(":kzmq-test")
include(":kzmq-zeromqjs")
include(":kzmq-jeromq")
include(":kzmq-libzmq")
include(":kzmq-cio")
include(":kzmq-engine-cio")
include(":kzmq-engine-jeromq")
include(":kzmq-engine-libzmq")
include(":kzmq-engine-zeromqjs")
include(":kzmq-benchmarks")
include(":kzmq-tests")
include(":kzmq-tools")

0 comments on commit 10e7fae

Please sign in to comment.