Skip to content

Commit

Permalink
Adds in bintray tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
bijukunjummen committed Nov 2, 2019
1 parent 0f6e782 commit 6135aba
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion build.gradle
Expand Up @@ -13,8 +13,10 @@ buildscript {

plugins {
id 'java-library'
id "com.jfrog.bintray" version "1.7"
id "com.jfrog.bintray" version "1.8.4"
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'maven-publish'
id 'nebula.release' version '13.0.0'
}

group = 'com.github.bijukunjummen'
Expand Down Expand Up @@ -57,4 +59,16 @@ bintray {
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/bijukunjummen/json-hash.git'
}
}

tasks.snapshot {
finalizedBy tasks.bintrayUpload
}

tasks.candidate {
finalizedBy tasks.bintrayUpload
}

tasks.final {
finalizedBy tasks.bintrayUpload
}

0 comments on commit 6135aba

Please sign in to comment.