Update the build script to be more explicity about cleaning and running default tasks

Giving this another try with an auto-deploy
This commit is contained in:
R. Tyler Croy 2015-07-04 14:27:46 -07:00
parent 08e4076f95
commit 39db2912ad
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 11 additions and 1 deletions

View File

@ -3,6 +3,11 @@ language: java
jdk:
- oraclejdk7
- oraclejdk8
script:
- ./gradlew clean
- ./gradlew
env:
global:
secure: MzcJafov6+fztyym0hZFTxjirTAgVFqFRO4pSSoDUZV71jHBYRKLmQxiaYpqdl9d7Q7Jz7UfNZRSisNwZQdeZjs0B9yJwy9m1mDlJaUXIWN/xzW04qPnZ5zxh1yJHK+UHIw5G2qRZSE42m9G3TSRBlUz6OMk+tr2UYErfnKzcsc=

View File

@ -7,7 +7,7 @@ apply plugin: 'application'
group = "com.github.lookout"
description = "A utility for monitoring the delay of Kafka consumers"
version = '0.2.1'
version = '0.2.2'
mainClassName = 'com.github.lookout.verspaetung.Main'
defaultTasks 'clean', 'check', 'assemble'
@ -87,6 +87,11 @@ artifacts {
archives shadowJar
}
/* Remove the "library" jar from the archives configuration so it's not
* published
*/
configurations.archives.artifacts.removeAll { it.archiveTask.is jar }
bintray {
user = project.bintrayUser