forked from GENERALBYTESCOM/batm_public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (31 loc) · 907 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
}
}
final File repoDir = project.file('libs')
allprojects {
repositories {
jcenter()
}
repositories {
//bitcoin-json-rpc-client-1.0.jar isn't part of any well known maven repo
//so we search the libs dir; gradle generates (guesses) metadata except dependencies.
//Artifacts from repos with real metadata take precedence.
flatDir {
dirs repoDir
}
}
tasks.withType(JavaCompile) {
project.sourceCompatibility = '1.8'
options.encoding = 'UTF-8'
options.incremental = true
}
}
ext.with {
BatmDependencySubstitutionConfig = file('dependencySubstitutions.txt')
}