File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,8 @@ install: true
55script : " ./gradle/buildViaTravis.sh"
66cache :
77 directories :
8- - $HOME/.gradle/caches/
9- - $HOME/.gradle/wrapper/
10- before_install :
11- - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_7cab1cb271a0_key -iv $encrypted_7cab1cb271a0_iv -in gradle.properties.enc -out gradle.properties -d || true
8+ - $HOME/.gradle/caches/
9+ - $HOME/.gradle/wrapper/
1210after_success :
1311- " ./gradlew jacocoTestReport coveralls"
1412notifications :
@@ -18,3 +16,11 @@ notifications:
1816 on_success : change
1917 on_failure : always
2018 on_start : never
19+ env :
20+ global :
21+ - secure : S6TVfwIk5uIgP63KMP/vlkD8/5TkxgWt3HhJYk1AFUeArtEWxjO5VtNeX/+BwolkztNnrBBNhANH4Yp/xYFFUssDH/dc+BBNgSzl+euMts/49Zfh3CbnOFWmwJoWWbri7LezoiYR1WXF/VhMhq4rlEHekOqJN4n9VEli4UO/dac=
22+ - secure : dBmSmB5AoY84u8OkA6NpQisTGYs4hyE95LdkMNGweSzenKHvBjsGLhOzI5dAFbU6UtTqabLQxe+04bmtkmCxvHKdoJS3XKOfsiCI6pv9zghEAqiDTiX3HO8gqzk0rb9KHilW1HflD1fIbMCdnJGS22zRQlq8JBLhhFsFO8NDN6c=
23+ - secure : YGuvs3bBT6tUpRl9kzambw9Z4gCqcGMkkP98zy3AiDmcXlf6IUH9dmBCZgkaiP4wKILSFmGJjPkRM7fOLzqjysDNOeF74NahuesyOI2UW91a0CNyT73ortQHeAV5eIYcyWz8J6m5c6mYl4+mgmEoeVUiyNruYq8PhKi6JmLM7tQ=
24+ - secure : DKtrkI9AIskNFTGlsHHrVqhVt5q4Ed4KkSItDIgGJNQslmRiDqXKifcq9rCOye8ahzvsVg+TALaQK3ryG7WVayh2fgzd9vn8g7qs1NGeGFRCudK5VGalJGyeQcLp0ek7L/TsBErA98OXSOfvkamG4Rj6CdzDuqurmDmKqR6Qmf8=
25+ - secure : Dp5c8vSS84CtF718g6oNeA9AIiw6CTs4068tIpLqbHKCTrtDM0fLTA1O4rovfOTc9XSHECaeBsOOm5sf9pwVHB5CIDR3ZdX1BS/Y9O9W8ttRDC5yDK61k+HNGeq6b+PpAX6fOTzQIbP7Q8J/QVmRNjDBQMVcGsB3Gh60BPAFrnk=
26+ - secure : EWz9U2QIPlueeeJoDIkW32XxUndhd6ma6bCgaW9JXgNJQygJOgIH+JRYF4qF7qFuMzXOl5mflXVKScFIxWJSrCJt4NmTEHOiKedBlNmGNLWCPZlIrKDNDlPrfm2TGaI2kGAphMH2X3Fkjt7OlEVw9rRkbGH6kQvWcYYog1IrE0w=
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616plugins {
17- id ' nebula.plugin-plugin' version ' 11.2.1 '
17+ id ' nebula.plugin-plugin' version ' 11.2.12 '
1818}
1919
2020description = ' Allows projects to leave off version numbers in dependencies section and have versions recommended by other sources'
Original file line number Diff line number Diff line change 11#! /bin/bash
22# This script will build the project.
33
4- SWITCHES=" --info --stacktrace --parallel "
4+ SWITCHES=" --info --stacktrace"
55
66GRADLE_VERSION=$( ./gradlew -version | grep Gradle | cut -d ' ' -f 2)
77
@@ -15,10 +15,10 @@ elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then
1515 echo -e ' Build Branch for Release => Branch [' $TRAVIS_BRANCH ' ] Tag [' $TRAVIS_TAG ' ]'
1616 case " $TRAVIS_TAG " in
1717 * -rc\. * )
18- ./gradlew -Prelease.travisci=true -Prelease.useLastTag=true candidate $SWITCHES
18+ ./gradlew -Prelease.travisci=true -Psonatype.username= $sonatypeUsername -Psonatype.password= $sonatypePassword -Pbintray.user= $bintrayUser -Pbintray.apiKey= $bintrayKey - Prelease.useLastTag=true candidate $SWITCHES
1919 ;;
2020 * )
21- ./gradlew -Prelease.travisci=true -Prelease.useLastTag=true final $SWITCHES
21+ ./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
2222 ;;
2323 esac
2424else
You can’t perform that action at this time.
0 commit comments