-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (41 loc) · 1.06 KB
/
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
46
47
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
}
}
apply from: 'versioning.gradle'
version '1.0.4-SNAPSHOT'
// define dependency versions for this project
ext.deps = [
androidSupport: '23.1.0',
gtoSupport : '0.8.0'
]
subprojects {
group 'com.expidevapps.android'
version rootProject.version
repositories {
mavenLocal()
jcenter()
maven {
name "maven.gcx.org"
url "https://maven.gcx.org/"
credentials {
username gcxMavenRepositoryUsername
password gcxMavenRepositoryPassword
}
}
maven { url 'https://maven.fabric.io/public' }
}
apply from: "$rootProject.projectDir/maven_publish.gradle"
afterEvaluate { project ->
artifacts {
archives artifactSourcesJar
archives artifactJavadocJar
}
}
}