-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
65 lines (53 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
group 'com.implimentz'
version version
apply plugin: 'java'
sourceCompatibility = 1.6
ext {
version = '0.0.6'
}
configurations {
provided
}
sourceSets {
main {
compileClasspath += configurations.provided
}
}
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
}
}
ext {
bintrayRepo = 'maven'
bintrayName = 'unsafe'
publishedGroupId = 'com.implimentz'
libraryName = 'unsafe'
artifact = 'unsafe'
libraryDescription = 'Unsafe wrapper for android'
siteUrl = 'https://github.com/iamironz/unsafe'
gitUrl = 'https://github.com/iamironz/unsafe'
libraryVersion = ext.version
developerId = 'iamironz'
developerName = 'Alexander Efremenkov'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
provided 'com.google.android:annotations:4.1.1.4'
compile group: 'junit', name: 'junit', version: '4.12'
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'