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 299f41a commit 6563ba7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
11 changes: 8 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_d609e95af532_key -iv $encrypted_d609e95af532_iv
-in gradle.properties.enc -out gradle.properties -d || true
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
Expand All @@ -19,3 +16,11 @@ notifications:
on_success: change
on_failure: always
on_start: never
env:
global:
- secure: UCafCVnQFrQSa+5NdwXGMBB2Wu+5d6cvhWEZNe+ttNI8ZS/kFgnocEJn6YJeLRZvgtzXnaCh9zWldUgUD7pf277gDdbur0GAk5GGybswvdN3NgeLqnxGlGR92ySFfkWX0iX9poWpudyJp/tMiAfshthazoRIFineIKUOhE1Wm3g=
- secure: PTa8WX+RMeapLv0eIizRH0Fxvl/n3tdaOvIZ8qRyZOX2u+GJpC9Y4Z4PdGJInro0IGFlt+/TfU008Ob7qQADO+xkhq/yYCwHPWmu57zfva5ltDJqAFKxymC/YwOnOGyEqo44Ub4TTgNVwey7K72uNdiTdMzS81EJ1E/rnY8KpOE=
- secure: VtryWtEKHOoji/QdWyAQpwKP3i7mPGlnlvJ8rWXUmQ0HcJTJy5Gc08joMvx5qkKowdBpUHVbSwSLyp4/VZc+CSPZPTFZxUdNYowqXmVUPyP2MfnQmfQSq01BUoOIHYcMEF8d9L7vKoMg5HlGEJZ84Dpl4aPsK1G2pukdUqJCLRE=
- secure: BybG2aTAybBBdXFlxmtUnfFsDUCAE84mf2kxl4bOHoznF/n4JmRHzRFGIDEdAMYqnKssqLnmxP0znntO/Gh2rJ1cjUXr15zhT/b4msK2CKaoWOu4fcI+ZkQTo2njTmXXVoL57gfBlpXbl1dRYZ3yM5RM7AolQnugn4TezHPChxA=
- secure: WjamMgm3iVujyQvLG+GiFuBDAVlFKnTABQy4sWhUrQa29cyyWhtROCHuPXMase1Ic57ZVFesL04bp44kipldzzuF7rsuseaH09Eolk8MbnkwiGkFHr+9Tdt7L9vsuFdAOhpnETBfc19sL2zd2bRGiz90RbqgSp6gKKtThG650CU=
- secure: gzZYvQS6dzuc6UoPAJoswmprX0OQGLf4m52/qU5eKQJeIUB7n5KRrmHTnH9AmVvtQNoTyH85D9OL4eA7HY4Vjc8Ko0W6OfHQA/MrRJrj9VRs92pajaj5pYrCyNDkWpANkOchKLnRTOLk/ZIHmDlBmjW5+PxnovIbjPZqkPcRdKE=
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 'Plugins to add provided and optional configurations'
Expand Down
Binary file removed gradle.properties.enc
Binary file not shown.
6 changes: 3 additions & 3 deletions gradle/buildViaTravis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
./gradlew build $SWITCHES
elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then
echo -e 'Build Branch with Snapshot => Branch ['$TRAVIS_BRANCH']'
./gradlew build $SWITCHES
./gradlew build $SWITCHES
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 6563ba7

Please sign in to comment.