aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-03-15 22:26:06 -0400
committerGitHub <noreply@github.com>2017-03-15 22:26:06 -0400
commitea78089562997628cf68451abf878078bb1d6e9d (patch)
treeef0c928cbcc462e04ac7147b1f0ecc2cc019b9d0
parentde038c742f0b1f5e66d5b8570b5f86cf4a9cbd9f (diff)
parent2a082140f039c02e488964976d027f84955e7d7e (diff)
downloadcbt-ea78089562997628cf68451abf878078bb1d6e9d.tar.gz
cbt-ea78089562997628cf68451abf878078bb1d6e9d.tar.bz2
cbt-ea78089562997628cf68451abf878078bb1d6e9d.zip
Merge pull request #435 from cvogt/recursive_variable_subst
add test case for #433
-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 517dd83..dd5f95b 100644
--- a/test/simple/build/build.scala
+++ b/test/simple/build/build.scala
@@ -13,7 +13,9 @@ class Build(val context: cbt.Context) extends BaseBuild{
// the below tests pom inheritance with variable substitution for pom xml tag contents
MavenDependency("com.spotify", "missinglink-core", "0.1.1"),
// the below tests pom inheritance with variable substitution being parts of strings
- MavenDependency("cc.factorie","factorie_2.11","1.2")
+ MavenDependency("cc.factorie","factorie_2.11","1.2"),
+ // test recursive substitution. see https://github.com/cvogt/cbt/issues/434
+ MavenDependency("com.amazonaws", "aws-java-sdk-s3", "1.11.86")
// the dependency below uses a maven version range. Currently not supported.
// TODO: put in a proper error message for version range not supported
//MavenDependency("com.github.nikita-volkov", "sext", "0.2.4")