aboutsummaryrefslogtreecommitdiff
path: root/stage2/SbtDependencyDsl.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/SbtDependencyDsl.scala')
-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)))
}
/*