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

Commit

Permalink
Changed type Set -> List wherever packages are listed since the order…
Browse files Browse the repository at this point in the history
… matters when those options are passed to bnd.
  • Loading branch information
Roman Roelofsen committed Jun 17, 2010
1 parent 903f852 commit 9a43388
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/scala/properties.scala
Expand Up @@ -58,22 +58,22 @@ private[bnd4sbt] trait BNDPluginProperties extends ProjectAccessor {
protected def bndExecutionEnvironment = Set[ExecutionEnvironments.Value]()

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

/** The value for Export-Package. Defaults to empty set, i.e. nothing is exported. */
protected def bndExportPackage = Set[String]()
protected def bndExportPackage = List[String]()

/** The value for Import-Package. Defaults to "*", i.e. everything is imported. */
protected def bndImportPackage = Set("*")
protected def bndImportPackage = List("*")

/** The value for Dynamic-ImportPackage. Defaults to empty set, i.e. nothing is imported dynamically. */
protected def bndDynamicImportPackage = Set[String]()
protected def bndDynamicImportPackage = List[String]()

/** The value for Bundle-Actiavtor, wrapped in an Option. Defaults to None, i.e. no activator is defined. */
protected def bndBundleActivator: Option[String] = None

/** The value for Include-Resource. Defaults to the main resources. */
protected def bndIncludeResource = Set(project.mainResourcesPath.absolutePath)
protected def bndIncludeResource = List(project.mainResourcesPath.absolutePath)

/** Should the dependencies be embedded? Defaults to false. */
protected def bndEmbedDependencies = false
Expand Down

0 comments on commit 9a43388

Please sign in to comment.