-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (51 loc) · 1.3 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
plugins {
id 'java-gradle-plugin'
id 'groovy'
id "com.jfrog.bintray" version "1.8.5"
}
group 'nl.uncinc.androidci'
version '0.4'
sourceCompatibility = 1.11
repositories {
mavenCentral()
google()
jcenter()
}
gradlePlugin {
plugins {
UncIncAndroidCI {
id = 'nl.uncinc.androidci'
implementationClass = 'nl.uncinc.androidci.UncIncAndroidCIPlugin'
}
}
}
dependencies {
compile gradleApi()
compile localGroovy()
compile "com.android.tools.build:gradle:7.4.0"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
apply plugin: 'maven'
uploadArchives {
repositories {
mavenDeployer {
repository(url: uri('/Users/techwolf12/gradletest'))
}
}
}
bintray {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
configurations = ['archives']
pkg {
repo = 'android-ci'
name = 'UncIncAndroidCIPlugin'
userOrg = 'uncinc'
licenses = ['MIT']
vcsUrl = 'https://github.com/uncinc/android-ci.git'
version {
name = '0.3'
vcsTag = '0.3'
}
}
}