diff --git a/Readme.md b/Readme.md index 20d18e6dc70db8c7044f173fbddfefd9d801f258..bac49e1074b0326cc0ad3b0b2c2dd05b1c62ef18 100644 --- a/Readme.md +++ b/Readme.md @@ -69,8 +69,8 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("io.github.davidepianca98:kmqtt-common:0.4.8") - implementation("io.github.davidepianca98:kmqtt-client:0.4.8") + implementation("io.github.davidepianca98:kmqtt-common:1.0.0") + implementation("io.github.davidepianca98:kmqtt-client:1.0.0") } } } @@ -83,8 +83,8 @@ repositories { mavenCentral() } dependencies { - implementation("io.github.davidepianca98:kmqtt-common-jvm:0.4.8") - implementation("io.github.davidepianca98:kmqtt-client-jvm:0.4.8") + implementation("io.github.davidepianca98:kmqtt-common-jvm:1.0.0") + implementation("io.github.davidepianca98:kmqtt-client-jvm:1.0.0") } ``` @@ -166,8 +166,8 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("io.github.davidepianca98:kmqtt-common:0.4.8") - implementation("io.github.davidepianca98:kmqtt-broker:0.4.8") + implementation("io.github.davidepianca98:kmqtt-common:1.0.0") + implementation("io.github.davidepianca98:kmqtt-broker:1.0.0") } } } @@ -180,8 +180,8 @@ repositories { mavenCentral() } dependencies { - implementation("io.github.davidepianca98:kmqtt-common-jvm:0.4.8") - implementation("io.github.davidepianca98:kmqtt-broker-jvm:0.4.8") + implementation("io.github.davidepianca98:kmqtt-common-jvm:1.0.0") + implementation("io.github.davidepianca98:kmqtt-broker-jvm:1.0.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index d144ed4adcc9327d9c313f7957f82b0defd0689a..fd7d381defee31fdec55077a6c732ab1ec2483a4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,5 +19,5 @@ plugins { subprojects { group = "io.github.davidepianca98" - version = "0.4.8" + version = "1.0.0" } diff --git a/kmqtt-broker/docker/cluster/Dockerfile b/kmqtt-broker/docker/cluster/Dockerfile index be76eb89be9d782e252fc75db73e01c2c1c56391..ecaa2191ca8aed7baf70a6d108eb9e84fb242662 100644 --- a/kmqtt-broker/docker/cluster/Dockerfile +++ b/kmqtt-broker/docker/cluster/Dockerfile @@ -1,7 +1,7 @@ FROM openjdk:11-jre-slim ENV JAVA_TOOL_OPTIONS -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000 -COPY build/libs/kmqtt-0.4.8.jar kmqtt.jar +COPY build/libs/kmqtt-1.0.0.jar kmqtt.jar EXPOSE 1883 EXPOSE 22222 EXPOSE 22223