aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-17 22:32:41 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-17 22:32:41 -0400
commitf9ce0472aea0d6f646e8f7487f63ab8c4e42d22a (patch)
tree0b0f2e172252ea97a5c658d807c8591006308c9f /test
parent561928808939d87f2f8a5db0caa8b6e9e2931963 (diff)
downloadcbt-f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a.tar.gz
cbt-f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a.tar.bz2
cbt-f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a.zip
fixed previously too naive pom inheritance logic to properly handle properties and dependencyManagement pom inheritance features
pair-coded with @chavxo
Diffstat (limited to 'test')
-rw-r--r--test/simple/build/build.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/simple/build/build.scala b/test/simple/build/build.scala
index 3f7633b..37de2e4 100644
--- a/test/simple/build/build.scala
+++ b/test/simple/build/build.scala
@@ -4,6 +4,8 @@ import java.io.File
class Build(context: cbt.Context) extends BasicBuild(context){
override def dependencies = Seq(
ScalaDependency("com.typesafe.play", "play-json", "2.4.4"),
- JavaDependency("joda-time", "joda-time", "2.9.2")
+ JavaDependency("joda-time", "joda-time", "2.9.2"),
+ // the below tests pom inheritance with dependencyManagement and variable substitution
+ JavaDependency("org.eclipse.jgit", "org.eclipse.jgit", "4.2.0.201601211800-r")
) ++ super.dependencies
}