forked from facebook/screenshot-tests-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (28 loc) · 777 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
}
allprojects {
version = property('VERSION_NAME')
}
task uploadAllLocal(dependsOn: [
":plugin:uploadArchives",
":core:uploadArchives"]) {
}
task installAll(dependsOn: [
":core:install",
":plugin:install",
])
task uploadAllArchives(dependsOn:
[":plugin:uploadArchives",
":core:uploadArchives"]) {
doLast {
println("You need to close and release this from 'Staging Repositories' in http://oss.sonatype.org");
}
}
// Run all the tests prior to release. Also run integration_test.sh
task releaseTests(dependsOn:
[":plugin:pyTests",
":plugin:test",
":core:connectedAndroidTest"])