Skip to content

Commit

Permalink
attempt to fix runtime to compile time only.
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Feb 11, 2025
1 parent 9f82a26 commit bb93be2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ application {
mainModuleInfo {
annotationProcessor("dagger.compiler")
annotationProcessor("com.google.auto.service.processor")
annotationProcessor("com.github.spotbugs.annotations")
runtimeOnly("com.swirlds.config.impl")
runtimeOnly("org.apache.logging.log4j.slf4j2.impl")
runtimeOnly("io.helidon.logging.jul")
Expand All @@ -31,7 +32,7 @@ testModuleInfo {
requires("org.mockito")
requires("org.mockito.junit.jupiter")
requires("org.assertj.core")
requiresStatic("com.github.spotbugs.annotations")
annotationProcessor("com.github.spotbugs.annotations")
}

// Vals
Expand Down
3 changes: 2 additions & 1 deletion simulator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ application {
mainModuleInfo {
annotationProcessor("dagger.compiler")
annotationProcessor("com.google.auto.service.processor")
annotationProcessor("com.github.spotbugs.annotations")
runtimeOnly("com.swirlds.config.impl")
runtimeOnly("org.apache.logging.log4j.slf4j2.impl")
runtimeOnly("io.grpc.netty")
Expand All @@ -29,7 +30,7 @@ testModuleInfo {
requires("org.mockito")
requires("org.mockito.junit.jupiter")
requires("org.assertj.core")
requiresStatic("com.github.spotbugs.annotations")
annotationProcessor("com.github.spotbugs.annotations")
requires("com.google.protobuf")
}

Expand Down

0 comments on commit bb93be2

Please sign in to comment.