Skip to content

Commit

Permalink
Move JB annotations dependency to compile-only (#75)
Browse files Browse the repository at this point in the history
Fixes it ending up on the module path when resolving SJH transitively.
  • Loading branch information
Technici4n authored Jun 7, 2024
1 parent 503aae8 commit 8382e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ dependencies {
api("org.ow2.asm:asm:${project.asm_version}")
api("org.ow2.asm:asm-tree:${project.asm_version}")
api("org.ow2.asm:asm-commons:${project.asm_version}")
implementation("org.jetbrains:annotations:${project.jb_annotations_version}")
compileOnly("org.jetbrains:annotations:${project.jb_annotations_version}")
testImplementation('org.junit.jupiter:junit-jupiter-api:5.8.+')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.8.+')
}
Expand Down

0 comments on commit 8382e57

Please sign in to comment.