aboutsummaryrefslogtreecommitdiff
path: root/stage2/BasicBuild.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-09-28 10:14:00 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-09-28 10:14:00 -0400
commitd0cbd2c5afe092c85da7099ab052f700cfc24541 (patch)
treeda89d2721eb9400aa43cc6fab39a3c2fc43eaa0f /stage2/BasicBuild.scala
parented9fc68716b47de626c3f1f0b5fa1d86a2068498 (diff)
downloadcbt-d0cbd2c5afe092c85da7099ab052f700cfc24541.tar.gz
cbt-d0cbd2c5afe092c85da7099ab052f700cfc24541.tar.bz2
cbt-d0cbd2c5afe092c85da7099ab052f700cfc24541.zip
rename apiTarget to more appropriate name docTarget as the task is
called docJar
Diffstat (limited to 'stage2/BasicBuild.scala')
-rw-r--r--stage2/BasicBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 6d1f010..bcc3646 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -57,7 +57,7 @@ trait BaseBuild extends DependencyImplementation with BuildInterface with Trigge
/** directory where jars (and the pom file) should be put */
def jarTarget: File = scalaTarget
/** directory where the scaladoc should be put */
- def apiTarget: File = scalaTarget ++ "/api"
+ def docTarget: File = scalaTarget ++ "/api"
/** directory where the class files should be put (in package directories) */
def compileTarget: File = scalaTarget ++ "/classes"
/**