aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-04-27 09:19:57 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-04-28 13:34:01 -0400
commita8b87e23767f6fc7022152eb3b6784d42c93a33b (patch)
tree48309c51d832e1f61a286974b20c649d8af2624f
parent232de4be3fb2169070eeb72804c5a4d5500094f9 (diff)
downloadcbt-a8b87e23767f6fc7022152eb3b6784d42c93a33b.tar.gz
cbt-a8b87e23767f6fc7022152eb3b6784d42c93a33b.tar.bz2
cbt-a8b87e23767f6fc7022152eb3b6784d42c93a33b.zip
Wrong use of classifier
-rw-r--r--stage2/SbtDependencyDsl.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/SbtDependencyDsl.scala b/stage2/SbtDependencyDsl.scala
index 4fd4250..1ecf72c 100644
--- a/stage2/SbtDependencyDsl.scala
+++ b/stage2/SbtDependencyDsl.scala
@@ -13,7 +13,7 @@ trait SbtDependencyDsl{ self: Build =>
def %(artifactId: String) = new DependencyBuilder2( groupId, artifactId, None )
}
implicit class DependencyBuilder3(d: MavenDependency){
- def %(classifier: String) = d.copy(classifier = Classifier(Some(classifier)))
+ def %(classifier: String): MavenDependency = d//.copy(classifier = Classifier(Some(classifier)))
}
/*