forked from robolectric/robolectric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
150 lines (127 loc) · 4.9 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
allprojects {
repositories {
mavenLocal()
mavenCentral()
}
group = "org.robolectric"
version = "3.2-SNAPSHOT"
apply plugin: "java"
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
// Show all warnings except boot classpath
configure(options) {
if (System.properties["lint"] != null && System.properties["lint"] != "false") {
compilerArgs << "-Xlint:all" // Turn on all warnings
}
compilerArgs << "-Xlint:-options" // Turn off "missing" bootclasspath warning
encoding = "utf-8" // Make sure source encoding is UTF-8
incremental = true
}
}
// it's weird that compileOnly deps aren't included for test compilation; fix that:
project.sourceSets {
test.compileClasspath += project.configurations.compileOnly
}
apply plugin: "signing"
apply plugin: "maven"
task sourcesJar(type: Jar, dependsOn: classes) {
classifier "sources"
from sourceSets.main.allJava
}
javadoc.failOnError = false
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier "javadoc"
from javadoc.destinationDir
}
task provideBuildClasspath(type: ProvideBuildClasspathTask) {
File outDir = project.sourceSets['test'].output.resourcesDir
outFile = new File(outDir, 'robolectric-deps.properties')
}
test {
dependsOn provideBuildClasspath
exclude "**/*\$*" // otherwise gradle runs static inner classes like TestRunnerSequenceTest$SimpleTest
testLogging {
exceptionFormat "full"
showCauses true
showExceptions true
showStackTraces true
showStandardStreams true
events = ["failed", "skipped"]
}
minHeapSize = "1024m"
maxHeapSize = "2048m"
jvmArgs "-XX:MaxPermSize=1024m"
}
signing {
required { !version.endsWith("SNAPSHOT") && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
ext.mavenArtifactName = {
def projNameParts = project.name.split(/\//) as List
if (projNameParts[0] == "robolectric-shadows") {
projNameParts = projNameParts.drop(1)
return projNameParts.join("-")
} else {
return project.name
}
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
uploadArchives {
repositories {
mavenDeployer {
pom.artifactId = mavenArtifactName()
pom.project {
name project.name
description = "An alternative Android testing framework."
url = "http://robolectric.org"
licenses {
license {
name "The MIT License"
url "https://opensource.org/licenses/MIT"
}
}
scm {
url "[email protected]:robolectric/robolectric.git"
connection "scm:git:git://github.com/robolectric/robolectric.git"
developerConnection "scm:git:https://github.com/robolectric/robolectric.git"
}
developers {
developer {
name "Christian Williams"
email "[email protected]"
organization {
name "Google Inc."
}
organizationUrl "http://google.com"
}
developer {
name "Jonathan Gerrish"
email "[email protected]"
organization {
name "Google Inc."
}
organizationUrl "http://google.com"
}
}
}
def url = project.version.endsWith("-SNAPSHOT") ?
"https://oss.sonatype.org/content/repositories/snapshots" :
"https://oss.sonatype.org/service/local/staging/deploy/maven2/"
repository(url: url) {
authentication(
userName: System.properties["sonatype-login"],
password: System.properties["sonatype-password"]
)
}
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
}
}
}
}