aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-06-30 11:51:28 -0400
committerGitHub <noreply@github.com>2017-06-30 11:51:28 -0400
commite5d25b1f0fc6200eb9f89ef37c2037399c350269 (patch)
tree434a9038f270e61c139d464da8c2130d33624c17
parent1b515ca6f55c4e8935f758fecea8df7ee7777b0c (diff)
parentcf4533b4c095cea6524301043a4a793d2d89d6b6 (diff)
downloadcbt-e5d25b1f0fc6200eb9f89ef37c2037399c350269.tar.gz
cbt-e5d25b1f0fc6200eb9f89ef37c2037399c350269.tar.bz2
cbt-e5d25b1f0fc6200eb9f89ef37c2037399c350269.zip
Merge pull request #542 from cvogt/fix-cross-version-caching
fix cross-version caching key
-rw-r--r--stage2/BasicBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 66167b8..2b04614 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -17,7 +17,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with SbtDep
// will create new instances given the context, which means operations in the
// overrides will happen multiple times and if they are not idempotent stuff likely breaks
def context: Context
- override lazy val moduleKey: String = "BaseBuild("+target.string+")"
+ override lazy val moduleKey: String = "BaseBuild("+scalaTarget.string+")"
implicit def transientCache: java.util.Map[AnyRef,AnyRef] = context.transientCache
object libraries extends libraries( context, scalaVersion, scalaMajorVersion )