blob: 21b52cef089f5877e6c571bb71e78ffa0def668b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
name := "scrunch"
version := "0.3.0"
scalaVersion := "2.9.2"
resolvers ++= Seq(
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository",
)
libraryDependencies ++= Seq(
"org.apache.crunch" % "crunch" % "0.3.0" excludeAll(
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "javax.jms")
),
"org.apache.hadoop" % "hadoop-client" % "1.0.3" % "provided" excludeAll(
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "javax.jms")
),
"org.apache.hbase" % "hbase" % "0.90.4" % "provided" excludeAll(
ExclusionRule(organization = "org.apache.hadoop"),
ExclusionRule(organization = "commons-logging"),
ExclusionRule(organization = "com.google.guava"),
ExclusionRule(organization = "log4j"),
ExclusionRule(organization = "org.slf4j")
),
"junit" % "junit" % "4.8.1" % "test",
"org.scalatest" % "scalatest_2.9.2" % "1.7.2" % "test"
)
parallelExecution in Test := false