forked from bailiangjin/BaseLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 1.07 KB
/
build.gradle
File metadata and controls
40 lines (32 loc) · 1.07 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.novoda:bintray-release:0.3.4'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "io.realm:realm-gradle-plugin:1.1.0"
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
repositories {
jcenter()
}
}
ext {
userOrg = 'geekkevin'//bintray.com用户名
groupId = 'com.geekkevin'//jcenter上的路径
artifactId = 'baselibrary'//项目名称
publishVersion = '1.0.1.1'//版本号
desc = 'android develop base library by geekkevin'//描述,不重要
website = 'https://github.com/bailiangjin/BaseLibrary'//网站,不重要
licences = ['Apache-2.0']
}