Skip to content

Commit

Permalink
plugin-plugin 11.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Apr 15, 2019
1 parent 08464b8 commit 21b3f08
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ install: true
script: "./gradle/buildViaTravis.sh"
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_8a3d3d61e4fd_key -iv $encrypted_8a3d3d61e4fd_iv -in gradle.properties.enc -out gradle.properties -d || true
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
Expand All @@ -18,3 +16,11 @@ notifications:
on_success: change
on_failure: always
on_start: never
env:
global:
- secure: sVuIjLCVi1R9TvJOs2NqSQMGZUX+N/3Ip0meoHwmyVYe9wulJY5APUSurf+aKwegpDOPkk7WFSVAbysHih3v6mCCB+DtgkCxMKrRnGWzdLYe1plnpgXAHW4C3jZd8gag7IUvnAPMWrWb1GqfHEsWRoGclrNA5ie8R2pVLwKJX60=
- secure: hln89z/ts2xvPBvF28s09pYu4nHn0CFyamOOXRFvHYffhylFUO0US1lZ3FVEMZWtXBwyrnAqv/6Mx/9dLOtl0mv8/qj65cWBSZIEGVoH/fs+IMETIcclZTBYb9iurBuwYR82Ptv4lcZ3bNZ1IJoeawP6TYjfnRn+RcsB1dlZYWI=
- secure: dTk9rlgaWzJ5dpazYWPSKO3zrm5c6A1Epo4q2/WvdeyZ5jyPaVKJMyjN8VzhxQVH/AfdzXfdG3nPMal2qlijCXvxAhC5tpGim6mW29qKpYGx52TQ2WtM9iCSkckNEbfX+maWsd33Kf5w1ELCpIbWVFoe34ti84i2iCpsRII0PVI=
- secure: hXoHvbvaYOtMe/bLYkcud/UrNjhT8M13KOWFfWwrvI6GhJxw6CVUFiYwHc0/HRwNN18vs73OZc5tFTtlMniiiEsZKY7voPQFXFRQY9fwEAbgWAO3CL3PireF6DwxaqNxrwfatxuuZ22NP89izLrv8hHAE68qiFZYL3WDHM/or3E=
- secure: LcLoVTJAZYsiVdXjkZnSAGZJCGWD+hi+M+R7by6lAzBtLfuveEewaUoE2NlFvS/aLiO90NFIZa+7m89gKMljRWxTru1AA7EcAf0P+n8nw5VGg+02lZGQpLMY6AVW3uWyzgX1dWhV6zLNBSy2LnVpwu5HpocthltCblX/X1eODqo=
- secure: Jt5x8YLjazRpRGG2roHvJevqo2+qYG+O1RkeBRMGX/MO7X3/9D4t/fO8uc8em5LIHriVDYCgB7XN0WKQgzKe93fzjtfE1tj2mMwGo5d3j/1IsQJZyHS8QYCh+C0IL/rXNtpfYdrHQvLN36srug03vytJaoElaE+y1iBErV10rWs=
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


plugins {
id 'nebula.plugin-plugin' version '11.2.1'
id 'nebula.plugin-plugin' version '11.2.12'
}

description 'Gradle plugin to setup a responsible Gradle project'
Expand Down
1 change: 0 additions & 1 deletion gradle.properties.enc

This file was deleted.

4 changes: 2 additions & 2 deletions gradle/buildViaTravis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then
echo -e 'Build Branch for Release => Branch ['$TRAVIS_BRANCH'] Tag ['$TRAVIS_TAG']'
case "$TRAVIS_TAG" in
*-rc\.*)
./gradlew -Prelease.travisci=true -Prelease.useLastTag=true candidate $SWITCHES
./gradlew -Prelease.travisci=true -Psonatype.username=$sonatypeUsername -Psonatype.password=$sonatypePassword -Pbintray.user=$bintrayUser -Pbintray.apiKey=$bintrayKey -Prelease.useLastTag=true candidate $SWITCHES
;;
*)
./gradlew -Prelease.travisci=true -Prelease.useLastTag=true final $SWITCHES
./gradlew -Prelease.travisci=true -Dgradle.publish.key=$gradlePluginPublishKey -Dgradle.publish.secret=$gradlePluginPublishSecret -Psonatype.username=$sonatypeUsername -Psonatype.password=$sonatypePassword -Pbintray.user=$bintrayUser -Pbintray.apiKey=$bintrayKey -Prelease.useLastTag=true final $SWITCHES
;;
esac
else
Expand Down

0 comments on commit 21b3f08

Please sign in to comment.