Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
closes #12: Renamed property bndBundleRequiredExecutionEnvironment to…
Browse files Browse the repository at this point in the history
… bndExecutionEnvironment.
  • Loading branch information
Heiko Seeberger committed Jun 9, 2010
1 parent 60560bf commit 421b364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/BNDPlugin.scala
Expand Up @@ -60,7 +60,7 @@ trait BNDPlugin extends DefaultProject with BNDPluginProperties {
properties.setProperty(BUNDLE_NAME, bndBundleName) properties.setProperty(BUNDLE_NAME, bndBundleName)
for { v <- bndBundleVendor } properties.setProperty(BUNDLE_VENDOR, v) for { v <- bndBundleVendor } properties.setProperty(BUNDLE_VENDOR, v)
for { l <- bndBundleLicense } properties.setProperty(BUNDLE_LICENSE, l) for { l <- bndBundleLicense } properties.setProperty(BUNDLE_LICENSE, l)
properties.setProperty(BUNDLE_REQUIREDEXECUTIONENVIRONMENT, bndBundleRequiredExecutionEnvironment mkString ",") properties.setProperty(BUNDLE_REQUIREDEXECUTIONENVIRONMENT, bndExecutionEnvironment mkString ",")
properties.setProperty(BUNDLE_CLASSPATH, bundleClasspath mkString ",") properties.setProperty(BUNDLE_CLASSPATH, bundleClasspath mkString ",")
properties.setProperty(PRIVATE_PACKAGE, bndPrivatePackage mkString ",") properties.setProperty(PRIVATE_PACKAGE, bndPrivatePackage mkString ",")
properties.setProperty(EXPORT_PACKAGE, bndExportPackage mkString ",") properties.setProperty(EXPORT_PACKAGE, bndExportPackage mkString ",")
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/properties.scala
Expand Up @@ -55,7 +55,7 @@ private[bnd4sbt] trait BNDPluginProperties extends ProjectAccessor {
protected def bndBundleLicense: Option[String] = None protected def bndBundleLicense: Option[String] = None


/** The value for Bundle-RequiredExecutionEnvironment. Defaults to empty set, i.e. no execution environments are defined. */ /** The value for Bundle-RequiredExecutionEnvironment. Defaults to empty set, i.e. no execution environments are defined. */
protected def bndBundleRequiredExecutionEnvironment = Set[ExecutionEnvironments.Value]() protected def bndExecutionEnvironment = Set[ExecutionEnvironments.Value]()


/** The value for Private-Package. Defaults to "*", i.e. contains everything. */ /** The value for Private-Package. Defaults to "*", i.e. contains everything. */
protected def bndPrivatePackage = Set("*") protected def bndPrivatePackage = Set("*")
Expand Down

0 comments on commit 421b364

Please sign in to comment.