mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 14:50:57 +01:00
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
17 lines
243 B
Groovy
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'
|
|
}
|