blob: 85eb20e0fd46aaef6d5246ffee0ea49fbd19024e (
plain)
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
|
import au.com.coherentsoftware.gradle.mercurial.task.*
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'au.com.coherentsoftware.gradle:Gradle-MercurialMqPlugin:1.1.0+'
}
}
allprojects {
repositories {
mavenCentral()
}
}
apply plugin: 'mercurial-mq'
task cloneIcsOpenVPN( type: HgClone ) {
sourceUrl = 'https://code.google.com/p/ics-openvpn/'
workingDir = '.'
}
task updateIcsOpenVPN( type: HgUpdate ) {
workingDir = 'ics-openvpn'
branch = 'default'
}
|