mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
build.gradle: fix hasAnnotationProcessor check
This commit is contained in:
parent
5f69f769d6
commit
55b87f497c
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ plugins {
|
|||
}
|
||||
|
||||
def annotationProcessorMinVersion = GradleVersion.version("4.6")
|
||||
boolean hasAnnotationProcessor = (GradleVersion.current().compareTo(annotationProcessorMinVersion) > 0)
|
||||
boolean hasAnnotationProcessor = (GradleVersion.current().compareTo(annotationProcessorMinVersion) >= 0)
|
||||
|
||||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
|
|
Loading…
Add table
Reference in a new issue