Skip to content

Instantly share code, notes, and snippets.

@chochos
Created October 14, 2011 23:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chochos/1288711 to your computer and use it in GitHub Desktop.
Save chochos/1288711 to your computer and use it in GitHub Desktop.
Gradle script for Finagle projects
apply plugin:'scala'
repositories {
mavenLocal()
mavenCentral()
//This repo is for the Finagle jars
mavenRepo urls:'http://maven.twttr.com'
}
dependencies {
scalaTools 'org.scala-lang:scala-compiler:2.9.1', 'org.scala-lang:scala-library:2.9.1'
//I only want the http module for now. This will load core and utils.
compile 'org.scala-lang:scala-library:2.9.1', 'com.twitter:finagle-http:1.9.2'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment