forked from bitbar/android-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
127 lines (106 loc) · 3.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'java-gradle-plugin'
repositories {
mavenCentral()
}
configurations {
gradleApi
compile.extendsFrom gradleApi
gradleApi.extendsFrom groovy
}
dependencies {
gradleApi gradleApi()
groovy localGroovy()
compile 'com.android.tools.build:builder-test-api:2.3.0'
compile 'com.android.tools:annotations:25.3.0'
compile 'com.testdroid:testdroid-api:2.125'
testCompile 'junit:junit:4.12'
testCompile 'com.android.tools.build:gradle:2.3.0'
testCompile 'com.android.tools.build:gradle-core:2.3.0'
}
group = 'com.testdroid'
archivesBaseName = 'gradle'
version = '2.125.0'
gradlePlugin {
plugins {
testdroid {
id = 'testdroid'
implementationClass = 'com.testdroid.TestDroidPlugin'
}
}
}
// custom tasks for creating source/javadoc jars
task sourcesJar(type: Jar, dependsOn:classes) {
archiveClassifier.set('sources')
from sourceSets.main.allSource
}
javadoc {
exclude "**/internal/**"
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
title "Testdroid"
}
task javadocJar(type: Jar, dependsOn:javadoc) {
classifier 'javadoc'
from javadoc.destinationDir
}
// add javadoc/source jar tasks as artifacts
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
task publishLocal(type: Upload) {
configuration = configurations.archives
repositories {
mavenDeployer {
repository(url: uri('repo'))
}
}
}
project.ext.sonatypeUsername = hasProperty('sonatypeUsername') ? sonatypeUsername : ""
project.ext.sonatypePassword = hasProperty('sonatypePassword') ? sonatypePassword : ""
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment ->
if (project.ext.sonatypeUsername.length() == 0 || project.ext.sonatypePassword.length() == 0) {
throw new StopExecutionException("uploadArchives cannot be called without sonatype username and password")
}
signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: project.ext.sonatypeUsername, password: project.ext.sonatypePassword)
}
pom.project {
name 'Testdroid Plugin for Android'
description 'Adds support for deploying Android application to testdroid.com from the Android build system.'
url 'http://www.testdroid.com'
inceptionYear '2013'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
scm {
url "https://github.com/bitbar/android-gradle-plugin.git"
connection "git://github.com/bitbar/android-gradle-plugin.git"
developerConnection 'scm:[email protected]:bitbar/android-gradle-plugin.git'
}
developers {
developer {
name 'Sakari Rautiainen'
}
}
}
}
}
}
signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}