File tree Expand file tree Collapse file tree 4 files changed +6
-11
lines changed
Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ POM_LICENCE_DIST=repo
1313POM_DEVELOPER_ID =amlcurran
1414POM_DEVELOPER_NAME =Alex Curran
1515
16- BUILD_TOOLS_VERSION =19.0.3
16+ BUILD_TOOLS_VERSION =19.1.0
1717COMPILE_SDK =19
1818MIN_SDK =11
1919TARGET_SDK =19
Original file line number Diff line number Diff line change @@ -4,22 +4,17 @@ buildscript {
44 }
55
66 dependencies {
7- classpath ' com.android.tools.build:gradle:0.9.0'
8- classpath ' org.robolectric.gradle:gradle-android-test-plugin:0.9.4'
7+ classpath ' com.android.tools.build:gradle:0.12.+'
98 }
109}
1110
12- apply plugin : ' android-library'
13- apply plugin : ' android-test'
11+ apply plugin : ' com.android.library'
1412apply plugin : ' maven'
1513
1614dependencies {
1715 repositories {
1816 mavenCentral()
1917 }
20- androidTestCompile ' junit:junit:4.11'
21- androidTestCompile ' org.mockito:mockito-all:1.9.5'
22- androidTestCompile ' org.robolectric:robolectric:2.2'
2318}
2419
2520android {
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ afterEvaluate { project ->
105105 }
106106
107107 task androidJavadocs(type : Javadoc ) {
108- source = android. sourceSets. main. allJava
108+ source = android. sourceSets. main. java . getSrcDirs()
109109 }
110110
111111 task androidJavadocsJar(type : Jar , dependsOn : androidJavadocs) {
@@ -115,7 +115,7 @@ afterEvaluate { project ->
115115
116116 task androidSourcesJar(type : Jar ) {
117117 classifier = ' sources'
118- from android. sourceSets. main. allSource
118+ from android. sourceSets. main. java . getSrcDirs()
119119 }
120120
121121 artifacts {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ buildscript {
44 }
55
66 dependencies {
7- classpath ' com.android.tools.build:gradle:0.9.0 '
7+ classpath ' com.android.tools.build:gradle:0.12.+ '
88 }
99}
1010
You can’t perform that action at this time.
0 commit comments