Skip to content

Commit

Permalink
Remaining changes for renamed packages
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Nov 20, 2023
1 parent 222e569 commit 19d34cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ tasks.shadowJar {
}
})

val shadePrefix = "com.hivemq.client2.internal.shaded."
val shadePrefix = "com.hivemq.mqtt.client2.internal.shaded."
val shadeFilePrefix = shadePrefix.replace(".", "_")
relocate("io.netty", "${shadePrefix}io.netty")
relocate("META-INF/native/libnetty", "META-INF/native/lib${shadeFilePrefix}netty")
Expand Down
2 changes: 1 addition & 1 deletion gradle/japicc.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ allprojects {
val command = listOf(
"perl", bin.resolve("japi-compliance-checker.pl").path,
"-lib", artifactId,
"-skip-internal-packages", "com.hivemq.client2.internal",
"-skip-internal-packages", "com.hivemq.mqtt.client2.internal",
"-non-impl", nonImplFile.path,
"-check-annotations", "-s",
prevJar.path, jar.path)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private NettyEventLoopProvider(
if (executor == null) {
eventLoopGroup = eventLoopGroupFactory.apply(
threadCount, new ThreadPerTaskExecutor(
new DefaultThreadFactory("com.hivemq.client2.mqtt", Thread.MAX_PRIORITY)));
new DefaultThreadFactory("com.hivemq.mqtt.client2", Thread.MAX_PRIORITY)));

} else if (executor instanceof MultithreadEventLoopGroup) {
eventLoopGroup = (MultithreadEventLoopGroup) executor;
Expand Down

0 comments on commit 19d34cb

Please sign in to comment.