Skip to content

Commit

Permalink
Sync with Twitter internal, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
johnynek committed Feb 20, 2012
1 parent 6bf133c commit 51742bd
Show file tree
Hide file tree
Showing 16 changed files with 827 additions and 577 deletions.
14 changes: 8 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,25 @@ import AssemblyKeys._

name := "scalding"

version := "0.2.0"
version := "0.3.0"

organization := "com.twitter"

scalaVersion := "2.8.1"

resolvers += "Concurrent Maven Repo" at "http://conjars.org/repo"

libraryDependencies += "cascading" % "cascading-core" % "2.0.0-wip-165"
libraryDependencies += "cascading" % "cascading-core" % "2.0.0-wip-215"

libraryDependencies += "cascading" % "cascading-local" % "2.0.0-wip-165"
libraryDependencies += "cascading" % "cascading-local" % "2.0.0-wip-215"

libraryDependencies += "cascading" % "cascading-hadoop" % "2.0.0-wip-165"
libraryDependencies += "cascading" % "cascading-hadoop" % "2.0.0-wip-215"

libraryDependencies += "commons-lang" % "commons-lang" % "2.4"
libraryDependencies += "cascading.kryo" % "cascading.kryo" % "0.2.0"

libraryDependencies += "com.twitter" % "meat-locker" % "0.1.4"

libraryDependencies += "de.javakaffee" % "kryo-serializers" % "0.9"
libraryDependencies += "commons-lang" % "commons-lang" % "2.4"

libraryDependencies += "org.scala-tools.testing" % "specs_2.8.0" % "1.6.5" % "test"

Expand Down
4 changes: 3 additions & 1 deletion scripts/scald.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
require 'fileutils'
require 'thread'

SCALDING_VERSION="0.3.0"

#Usage : scald.rb [--hdfs|--local|--print] job <job args>
# --hdfs: if job ends in ".scala" or ".java" and the file exists, link it against JARFILE (below) and then run it on HOST.
# else, it is assumed to be a full classname to an item in the JARFILE, which is run on HOST
Expand All @@ -15,7 +17,7 @@
#Get the absolute path of the original (non-symlink) file.
ORIGINAL_FILE=File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
SCIENCE_ROOT=File.expand_path(File.dirname(ORIGINAL_FILE)+"/../")
JARFILE=SCIENCE_ROOT + "/target/scalding-assembly-0.2.0.jar" #what jar has all the depencies for this job
JARFILE=SCIENCE_ROOT + "/target/scalding-assembly-#{SCALDING_VERSION}.jar" #what jar has all the depencies for this job
puts JARFILE
HOST="my.remote.host" #where the job is rsynced to and run
TMPDIR="/tmp"
Expand Down
Loading

0 comments on commit 51742bd

Please sign in to comment.