The doc suggests <supportedProjectTypes>jar,bundle,hk2-jar</supportedProjectTypes> or maybe <supportedProjectTypes> <supportedProjectType>hk2-jar</supportedProjectType> <supportedProjectType>jar</supportedProjectType> <supportedProjectType>bundle</supportedProjectType> </supportedProjectTypes>
Stefan Sahoo wrote:
I want to use maven-bundle-plugin in a project whose packaging type is neither jar nor bundle. Is it still possible? I configured my pom.xml like this, but it does not work:<plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive><manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile></archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <supportedProjectType>hk2-jar</supportedProjectType> <supportedProjectType>jar</supportedProjectType> <supportedProjectType>bundle</supportedProjectType> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> Thanks, Sahoo --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- best regards, Stefan Seidel software developer ________________________ VUB Printmedia GmbH Chopinstraße 4 D-04103 Leipzig Germany tel. +49 (341) 9 60 50 07 fax. +49 (341) 9 60 50 92 mail. [EMAIL PROTECTED] web. www.vub.de HRB Köln 24015 UStID DE 122 649 251 GF Dr. Achim Preuss Neudorf, Dr. Christian Preuss Neudorf --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
