Skip to content

Commit

Permalink
Prepare release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RobWin committed Apr 5, 2019
1 parent 4755232 commit 65eb18b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -7,8 +7,7 @@ before_install:
script:
- "./gradlew clean check"
after_success:
- "./gradlew coberturaReport coveralls > /dev/null"
- ./gradlew artifactoryPublish -PbintrayUsername="${BINTRAY_USER}" -PbintrayApiKey="${BINTRAY_KEY}"
- test $TRAVIS_BRANCH = "master" && ./gradlew artifactoryPublish -PbintrayUsername="${BINTRAY_USER}" -PbintrayApiKey="${BINTRAY_KEY}"
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -9,7 +9,7 @@ buildscript {
dependencies {
classpath 'net.saliman:gradle-cobertura-plugin:2.3.2'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.7.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'me.champeau.gradle:jmh-gradle-plugin:0.3.1'
classpath "org.asciidoctor:asciidoctor-gradle-plugin:1.5.3"
classpath "org.ajoberstar:gradle-git:1.3.2"
Expand All @@ -24,15 +24,15 @@ apply plugin: 'com.github.kt3k.coveralls'
apply from: "${rootDir}/libraries.gradle"

ext {
releaseVersion = '0.13.2'
releaseVersion = '0.14.0'
}

allprojects {
apply plugin: 'net.saliman.cobertura'
apply plugin: 'me.champeau.gradle.jmh'
apply plugin: 'com.jfrog.artifactory'

version = '0.14.0-SNAPSHOT'
version = '0.14.0'
group = 'io.github.resilience4j'
description = 'Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming'

Expand Down
5 changes: 3 additions & 2 deletions publishing.gradle
Expand Up @@ -59,7 +59,8 @@ bintray {
desc = project.description
licenses = ['Apache-2.0']
version {
vcsTag = project.version
name = project.version
vcsTag = "v${project.version}"
gpg {
sign = true //Determines whether to GPG sign the files. The default is false
//Optional. The passphrase for GPG signing'
Expand All @@ -82,7 +83,7 @@ publishing {
def devs = ['RobWin': 'Robert Winkler',
'storozhukBM': 'Bogdan Storozhuk',
'drmaas': 'Dan Maas',
'goldobin': 'Oleksandr Goldobin']
'Romeh': 'Mahmoud Romeh']
def root = asNode()

root.dependencies.'*'.findAll() {
Expand Down

0 comments on commit 65eb18b

Please sign in to comment.