-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
51 lines (42 loc) · 1.44 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
48
49
50
51
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenLocal()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
// Required plugins added to classpath to facilitate pushing to JCenter/Bintray
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
ext {
bintrayRepo = 'maven'
publishedGroupId = 'au.com.outware'
libraryName = 'neanderthal'
libraryDescription = 'Neanderthal is a library that allows you to create and modify configuration environments for Android applications at run time.'
siteUrl = 'https://github.com/outware/neanderthal/'
gitUrl = 'https://github.com/outware/neanderthal.git'
libraryVersion = "${libraryVersion}"
developerId = 'outware'
developerName = 'Outware Mobile'
developerEmail = '[email protected]'
licenseName = 'MIT'
licenseUrl = 'https://opensource.org/licenses/MIT'
allLicenses = ["MIT"]
}
}