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 c467f9c commit d7b783c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
22 changes: 14 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,22 @@ 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_ae805dc87259_key -iv $encrypted_ae805dc87259_iv -in gradle.properties.enc -out gradle.properties -d || true
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
after_success:
- ./gradlew jacocoTestReport coveralls
- "./gradlew jacocoTestReport coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/40d8f3228ea299105c63
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
- https://webhooks.gitter.im/e/40d8f3228ea299105c63
on_success: always
on_failure: always
on_start: false
env:
global:
- secure: Co9eeWpxJjtc5w6Aa5Fzc+sJWO9RgLvXBAe0PItOG6CGINLBVG7/odornrnMUalFf+mIPrxKv+sCBvdLd962LgtK8Xp7d0T8WMJjvPkVn3YTkgHO1q3bRrt4H4URr0dUVGDqgyPf3gy4g7IsZFNxwtTVhIB4ZUhTaTmzfcnIGvA=
- secure: KPQlSISIRisIP+LaVgFzYWWknBZZyeTJwNGA4Z3BR2s3Y9TfG9vabMkjTwve8ili8FtxiW3GZ0Nsas9xmqOXbdMe2gLnB7J5zp2xjOtqmQfOs482MZZC1+EP7tNSrX5wRNDND/AVTY9kRqbykWlmUGL4L73OJMewY+EXQzc2034=
- secure: U7hbGwTSrrwm4FMBnsYV/eEGv7L+M2puZhyV7kV9XlguhNEoVCPU5tCY1QFlAehS7fkxjGpfyxX4RLkfdHMnTC1LfSDeiMS8GZgOsJrfrKtwyHXqgizxChAm9gVwwn/mFzT77UYfprLSiAowP5UeeB19tGusRmkUO1mgNsm+xwo=
- secure: SAAiXc2zxcMbyR61Yzeqa8NLCg6KqpZs37DiTb2+hMNGLjv8dq2MyxTNVFk6VE2gYRlYIbbRcqrZjTwaqmpbzwZDuFfG7sByVPKcMSjzyQ1DSwQPKGKBGLqIXKay49MP9K+4/GNetQE/1gNq8pLrsaIrqhFEkDG3PmNdMrqQqc8=
- secure: IqAkreTXLTCTUQMsyDxaRDs+3lT+OMQtHMx4a0aQ0lybFZOXjS2z18V7d9e/wcxjI165vL4IPGK76IpJRCtWPydcs7tBK5d2Ex/CRneoy1p57JXY0vcyKXT8XhXDUsSuSoh2QrhP762WE6+ABcNrhfyR8++rtob/iZzWyGLGtKs=
- secure: IR1n/ZjpwgK+9SzNujyEW3Q15hPrK2v3rbhnrNLV/nfXInLUK1iu+7nt03zyaOXyfomsFegG4xZtZ/pDPwxT60i6lERkW/UyewddBoBjOuRzIZRKzXj1zbr6rrHHmUdr3jxtxloWjTjy5BGYJ68y4KS6NfUpH1Gj0cLjJaWAVQk=
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'
id 'org.ysb33r.gradletest' version '0.5.4'
}

Expand Down
Binary file removed gradle.properties.enc
Binary file not shown.
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 d7b783c

Please sign in to comment.