-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
46 lines (38 loc) · 977 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
34
35
36
37
38
39
40
41
42
43
44
45
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
ext {
version = '0.3'
junit = 'junit:junit:4.12'
json = 'org.json:json:20160212'
androidLib = 'com.google.android:android:4.1.1.4'
jetbrainsAnnotations = 'org.jetbrains:annotations:15.0'
}
allprojects {
group 'com.github.naturs.logger'
version rootProject.ext.version
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_1_7
repositories {
mavenCentral()
jcenter()
}
tasks.withType(Javadoc) {
options{
encoding "UTF-8"
charSet 'UTF-8'
links "http://docs.oracle.com/javase/7/docs/api"
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}