Upgrade a bunch of dependencies; moving to the latest stable of Ratpack (0.9.19)

This commit is contained in:
R. Tyler Croy 2015-09-02 04:48:58 -07:00
parent 1d12b5b32d
commit 413929de56
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
3 changed files with 21 additions and 14 deletions

View File

@ -1,3 +1,6 @@
org.gradle.daemon=true org.gradle.daemon=true
bintrayUser= bintrayUser=
bintrayKey= bintrayKey=
targetCompatibility=1.8
sourceCompatibility=1.8

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip

View File

@ -1,36 +1,40 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// PLUGIN CONFIGURATION // PLUGIN CONFIGURATION
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
plugins { buildscript {
id "io.ratpack.ratpack-groovy" version "0.9.10" repositories {
id 'com.jfrog.bintray' version '1.0' jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:[1.3.1,1.4)'
classpath 'io.ratpack:ratpack-gradle:[0.9.19,1.0)'
}
} }
apply plugin: 'groovy' apply plugin: 'groovy'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'io.ratpack.ratpack-groovy'
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
version = '0.2.0' version = '0.2.0'
group = 'offtopic' group = 'offtopic'
description =' Offtopic is a simple web application built with Ratpack for inspecting and consuming events from Kafka.' description =' Offtopic is a simple web application built with Ratpack for inspecting and consuming events from Kafka.'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// DEPENDENCY AND REPOSITORY MANAGEMENT // DEPENDENCY AND REPOSITORY MANAGEMENT
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
repositories { repositories {
mavenLocal()
jcenter() jcenter()
mavenCentral()
} }
dependencies { dependencies {
compile 'io.ratpack:ratpack-handlebars:0.9.10+' compile 'org.codehaus.groovy:groovy-all:2.4.4'
compile 'io.ratpack:ratpack-jackson:0.9.10+'
compile 'io.ratpack:ratpack-codahale-metrics:0.9.10+' compile 'io.ratpack:ratpack-handlebars:[0.9.19,1.0)'
compile localGroovy() compile 'io.ratpack:ratpack-jackson:[0.9.17,1.0)'
compile 'io.ratpack:ratpack-codahale-metrics:[0.9.19,1.0)'
/* Needed for discovering brokers and all kinds of other things in /* Needed for discovering brokers and all kinds of other things in
* Zookeeeper * Zookeeeper
@ -43,7 +47,7 @@ dependencies {
// and matching dependencies // and matching dependencies
compile 'org.apache.zookeeper:zookeeper:3.5.+' compile 'org.apache.zookeeper:zookeeper:3.5.+'
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0' testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'cglib:cglib-nodep:2.2.+' testCompile 'cglib:cglib-nodep:2.2.+'
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////