Removed some dependencies since they will be provided by their own bundles
This commit is contained in:
parent
a085cfb710
commit
db2dd57350
1 changed files with 12 additions and 1 deletions
|
|
@ -306,7 +306,18 @@ class AkkaParent(info: ProjectInfo) extends DefaultProject(info) {
|
|||
override def bndClasspath = compileClasspath
|
||||
override def bndPrivatePackage = Set("")
|
||||
override def bndImportPackage = Set("*;resolution:=optional")
|
||||
override def bndExportPackage = Set("!se.scalablesolutions.akka.*", "*")
|
||||
override def bndExportPackage = Set(
|
||||
// Provided by Akka bundle
|
||||
"!se.scalablesolutions.akka.*",
|
||||
|
||||
// Provided by other bundles
|
||||
"!org.apache.commons.io.*",
|
||||
"!org.codehaus.jackson.*",
|
||||
"!org.codehaus.jettison.*",
|
||||
"!org.jboss.netty.*",
|
||||
|
||||
// Export the rest
|
||||
"*")
|
||||
}
|
||||
|
||||
class AkkaOSGiAssemblyProject(info: ProjectInfo) extends AkkaDefaultProject(info, distPath) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue