Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

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 ca585e0 commit 985a19d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,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_01cd2b72bc64_key -iv $encrypted_01cd2b72bc64_iv
-in gradle.properties.enc -out gradle.properties -d || true
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
Expand All @@ -21,3 +18,11 @@ notifications:
on_success: change
on_failure: always
on_start: never
env:
global:
- secure: MvRYIUkcecCXAyqPLJKn/k7IrhCs+N9OYzXw9g2y5U7q6MfpWjsACvJCr40Bzyje5oCCCWFPamsNKmMp5XKNtjGYVHuoD1PtN7v6HCMAreSXJ3CyCrkL0dIa8prR31iQb6j9av213+5tntT5h2ASznl7eu8zaJHSQ8gQp7NjHIE=
- secure: JvUNXp5Hn4V1Qt7fCs7RIaySzjhY/NwHCLE/8L2V9hc4KDC+pOoITQtw4PoDAuVTH0aa8PpvGgyQGHPG9syv7d/9oBABaehEtwO7aJMHlENZH7+4cEgm1g0R3jtYZjSAaLG82QtJCTAzXN4z44nVA+w5ggP3IDGnvDkiF777N4A=
- secure: NeRJPPxF1YqzNk3CsfofP3HRIzJh9ve+HrDzoi2gOs0ANHTfJpDK9YsnS2W3sFY3GTp1UglSSg5jgYQMEARVzNd9wWNyXT695reyjDHLRMh6G2pAMmbrcc+2yYb96KoECXwPFHhvSVM+mAJajgoW+d4ycHLUND2e9Qv4uUphFKg=
- secure: Adgy49csuecA1INU3A4xZ00krJzPvNXYWQ/Oj47/oGbnSA1lTtSAP3qBn2p3DRDdFfQdNljLUgivZlLS0tkjvDHCD0tsTLJ33Z5620rtPAUAMR7HI7mMwbJq2arpDBNzKpGW0AOrXvhF2RjCvPpr5XMbAaxrtbDGZe5eUsKZGBk=
- secure: dLAi1PdE4o/I+wbKqpFcYGA4qjBMGtOTqoEAEJ3t9cDM3CjSBNqIa6vB/D5XP5qUem7p1ZmypHm1cC74dwkQyKwxhfcdYdBNaQGV2c7sBeVEeyFuuwuq6Ud2KJ8MPtNQIRnDZFv5OpIxxAFaz9qGea4Cb+CpZLln5yanIEh1Fm8=
- secure: dGdSpiUAf15zsuOBf2VXR6le3mgYLDuvPWllpVJDDYjjlQD0UsIWRaunOHgKKrmbNrLzOcKdo98t4WGbixFFdHB6kIVjAoJAao0+lBYAAxO7FTUuaM2e1ksoVlH+FPy3zegteNDpijmRbiXl540c+tDQbX0QM+OnOQqRSqnSReM=
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 'Plugin to setup common SCM operations and information gathering'
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 985a19d

Please sign in to comment.