diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 0ffc7372..1e02488c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,13 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. +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+' } } @@ -13,3 +16,10 @@ allprojects { mavenCentral() } } + +apply plugin: 'mercurial-mq' + +task cloneProject( type: HgClone ) { + sourceUrl = 'https://code.google.com/p/ics-openvpn/' + workingDir = '.' +}
\ No newline at end of file |