Skip to content

Commit 8382e57

Browse files
authored
Move JB annotations dependency to compile-only (#75)
Fixes it ending up on the module path when resolving SJH transitively.
1 parent 503aae8 commit 8382e57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ dependencies {
118118
api("org.ow2.asm:asm:${project.asm_version}")
119119
api("org.ow2.asm:asm-tree:${project.asm_version}")
120120
api("org.ow2.asm:asm-commons:${project.asm_version}")
121-
implementation("org.jetbrains:annotations:${project.jb_annotations_version}")
121+
compileOnly("org.jetbrains:annotations:${project.jb_annotations_version}")
122122
testImplementation('org.junit.jupiter:junit-jupiter-api:5.8.+')
123123
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.8.+')
124124
}

0 commit comments

Comments
 (0)