File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ script:
36
36
- if [[ $LINT == 'true' ]]; then gradle lint ; fi
37
37
38
38
after_success :
39
- - if [[ $MAVEN == 'true' && $TRAVIS_BRANCH == 'dev' && $TRAVIS_PULL_REQUEST == 'false' ]]; then gradle uploadArchives -PnexusUsername="${nexusUsername}" -PnexusPassword="${nexusPassword}" ; fi
40
39
- if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then gradle generateReleaseJavadoc publishGhPages -PBRANCH=$TRAVIS_BRANCH ; fi
40
+ - if [[ $MAVEN == 'true' && $TRAVIS_BRANCH == 'dev' && $TRAVIS_PULL_REQUEST == 'false' ]]; then gradle uploadArchives -PnexusUsername="${nexusUsername}" -PnexusPassword="${nexusPassword}" ; fi
41
41
42
42
notifications :
43
43
email : false
Original file line number Diff line number Diff line change @@ -64,5 +64,5 @@ githubPages {
64
64
}
65
65
}
66
66
67
- apply from : ' ../maven_push .gradle'
67
+ apply from : ' ../pushMaven .gradle'
68
68
apply from : ' ../generateJavadoc.gradle'
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ afterEvaluate { project ->
60
60
}
61
61
62
62
task androidJavadocs(type : Javadoc ) {
63
- source = android. sourceSets. main. allJava
63
+ source = android. sourceSets. main. java
64
64
}
65
65
66
66
task androidJavadocsJar(type : Jar ) {
@@ -70,11 +70,11 @@ afterEvaluate { project ->
70
70
71
71
task androidSourcesJar(type : Jar ) {
72
72
classifier = ' sources'
73
- from android. sourceSets. main. allSource
73
+ from android. sourceSets. main. java . sourceFiles
74
74
}
75
75
76
76
task coreLibJar(type : Jar ) {
77
- from fileTree(dir : ' build/classes/release' ). matching { include ' com/nhaarman/listviewanimations/**' }
77
+ from fileTree(dir : ' ./ build/intermediates /classes/release' ). matching { include ' com/nhaarman/listviewanimations/**' }
78
78
}
79
79
80
80
artifacts {
You can’t perform that action at this time.
0 commit comments