bitcoinj/build.gradle
Sean Gilligan c53b0382a2 build.gradle: Update Protobuf Plugin for Gradle to 0.8.10.
The current latest version is 0.8.12, but version 0.8.11
and later require Gradle 5.6 or later which will change our
build requirements and documentation.

See:
https://github.com/google/protobuf-gradle-plugin/releases/tag/v0.8.11
2020-03-12 01:07:59 +01:00

17 lines
243 B
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10'
}
}
allprojects {
repositories {
jcenter()
}
group = 'org.bitcoinj'
}