Hello,

i have the following entries in my pom.xml:

            <plugin>
              <groupId>org.apache.felix</groupId>
              <artifactId>maven-bundle-plugin</artifactId>
              <version>1.4.0</version>
              <extensions>true</extensions>
              <configuration>
                  <instructions>
                     
<Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
                      <Bundle-Name>${pom.name}</Bundle-Name>
                      <Bundle-Version>${pom.version}</Bundle-Version>
                     
<Bundle-Activator>com.initka.bprocess.kernel_osgi.base.impl.Activator</Bundle-Activator>
                     
<Private-Package>com.initka.bprocess.kernel_osgi.base.impl</Private-Package>
                     
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
                  </instructions>
              </configuration>
          </plugin>

I want to add all dependencies in my bundle and setoup the bundle classpath. 
It looks like the plugin add all imports of my dependencies which are not
"reachable" to the bundle import statement. 

How can i aviod this entries? Our softrware is running several years without
this additional jars and felix don't load the bundle because it can't
resolve the imported packages from a huge count of third party jars. We want
to generate the Manifest during the maven build without any hand work.


Yours RĂ¼diger
-- 
View this message in context: 
http://old.nabble.com/Felix-maven-bundle-plugin-tp31706136p31706136.html
Sent from the Apache Felix - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to