//apply plugin: 'android-sdk-manager' apply plugin: 'com.android.library' buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.0.1' // NOTE: Do not place your application dependencies here: they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() } } android { compileSdkVersion 18 buildToolsVersion "20.0.0" lintOptions { abortOnError false } } repositories { maven { url "http://app.t-hoerup.dk/artifactory/ext-release-local" } } dependencies { // compile project(":lib") // compile 'com.android.support:appcompat-v7:19.0.1' // compile fileTree(dir: 'libs', include: ['*.jar']) compile group: 'dk.thoerup', name: 'GenericJavaUtils', version: '1.0' }