summaryrefslogtreecommitdiff
path: root/project/Osgi.scala
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2016-09-02 16:34:16 -0700
committerSeth Tisue <seth@tisue.net>2016-09-02 16:53:01 -0700
commit5ecc0376f8e352a66d73153f8205d7993849c6ec (patch)
treec5b5c126682557942c6139b54e32293138af73a1 /project/Osgi.scala
parent170373f06250d62c25cc4899de4e3236e71c4a78 (diff)
downloadscala-5ecc0376f8e352a66d73153f8205d7993849c6ec.tar.gz
scala-5ecc0376f8e352a66d73153f8205d7993849c6ec.tar.bz2
scala-5ecc0376f8e352a66d73153f8205d7993849c6ec.zip
remove various references to Ant build
Diffstat (limited to 'project/Osgi.scala')
-rw-r--r--project/Osgi.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/project/Osgi.scala b/project/Osgi.scala
index 4177251aa4..8a62c9128a 100644
--- a/project/Osgi.scala
+++ b/project/Osgi.scala
@@ -9,9 +9,9 @@ import VersionUtil.versionProperties
/** OSGi packaging for the Scala build, distilled from sbt-osgi. We do not use sbt-osgi because it
* depends on a newer version of BND which gives slightly different output (probably OK to upgrade
- * in the future but for now it would make comparing the sbt and ant build output harder) and does
- * not allow a crucial bit of configuration that we need: Setting the classpath for BND. In sbt-osgi
- * this is always `fullClasspath in Compile` whereas we want `products in Compile in packageBin`. */
+ * in the future, now that the Ant build has been removed) and does not allow a crucial bit of
+ * configuration that we need: Setting the classpath for BND. In sbt-osgi this is always
+ * `fullClasspath in Compile` whereas we want `products in Compile in packageBin`. */
object Osgi {
val bundle = TaskKey[File]("osgiBundle", "Create an OSGi bundle.")
val bundleName = SettingKey[String]("osgiBundleName", "The Bundle-Name for the manifest.")