Skip to content

Commit

Permalink
Fix groovydoc task classpath (#139)
Browse files Browse the repository at this point in the history
Exclude transitives from javaparser-core dependency to remove `guava` and `google-collections` from the documentation classpath.
  • Loading branch information
puneetbehl authored Dec 20, 2023
1 parent eb31309 commit 3faf960
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ dependencies {
api 'redis.clients:jedis:5.1.0'
api 'com.google.code.gson:gson:2.10.1'

documentation 'com.github.javaparser:javaparser-core:3.25.7'
documentation('com.github.javaparser:javaparser-core:3.25.7') {
transitive = false
}
}

groovydoc {
Expand Down

0 comments on commit 3faf960

Please sign in to comment.