Advertisement
Guest User

root build script

a guest
Apr 1st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.69 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         mavenCentral()
  4.     }
  5.  
  6.     dependencies {
  7.         classpath 'com.android.tools.build:gradle:0.9+'
  8.     }
  9. }
  10.  
  11. subprojects {
  12.     repositories {
  13.         maven { url "http://10.1.3.230:8082/archiva/repository/smartbow/" }
  14.         maven { url "https://repository-achartengine.forge.cloudbees.com/snapshot/" }
  15.         mavenCentral()
  16.     }
  17.  
  18.     ext {
  19.         smartbowSdkVersion = 19
  20.         smartbowBuildToolsVersion = "19.0.3"
  21.         smartbowVersionCode = System.getenv().BUILD_NUMBER?.toInteger()
  22.  
  23.         signingStoreFile = "XXX"
  24.         signingStorePassword = "XXX"
  25.         signingKeyAlias = "XXX"
  26.         signingKeyPassword = "XXX"
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement