Skip to content

Commit 1cbab44

Browse files
Merge pull request #281 from commercetools/Fix-release-build
Fix release build
2 parents 443677d + 715e0b8 commit 1cbab44

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: tag IS present
2323
script: ./gradlew clean setLibraryVersion benchmark benchmarkCommit
2424
- stage: full build
25-
script: ./gradlew clean setLibraryVersion build --debug --stacktrace
25+
script: ./gradlew clean setLibraryVersion build
2626
after_success:
2727
- bash <(curl -s https://codecov.io/bash)
2828
- ./travis-publish.sh || travis_terminate 1

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'com.jfrog.bintray' version '1.8.0'
3-
id 'org.ajoberstar.git-publish' version '1.0.0'
3+
id 'org.ajoberstar.git-publish' version '1.0.1'
44
id 'com.adarshr.test-logger' version '1.2.0'
55
id 'org.ajoberstar.grgit' version '2.2.1'
66
}

gradle-scripts/javadocs-publish.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ gitPublish {
66
// 2) to use GH token `repoUri` must have an https (not git or ssh) protocol
77

88
branch = 'gh-pages'
9-
109
// Copies the output of the 'javadoc' task into the path value passed to the 'into' method.
1110
// More about it:
1211
// https://docs.gradle.org/current/javadoc/org/gradle/api/file/CopySpec.html#from-java.lang.Object-groovy.lang.Closure-
@@ -36,6 +35,7 @@ gitPublishReset {
3635
3) $GH_TOKEN
3736
interrupt the task if neither of them is set.
3837
*/
38+
3939
final authProperty = 'org.ajoberstar.grgit.auth.username'
4040
if (!System.getProperty(authProperty)?.trim()) {
4141
def githubToken =

0 commit comments

Comments
 (0)