Hello,
I use maven as build tool and eclipse as IDE, but I would like to be independent from the used IDE.
Also generating the MANIFEST.MF from eclipse needs to synchronise some settings in the maven.pom and the template.mf (e.g. version and Bundle-Version).
So I tried to generate the MANIFEST.MF file into the folder "src/main/resources" by configuring the bundlor maven plugin:
but I never get a generated file. Its is only created into the artifact jar.Code:<execution> <id>bundlor</id> <goals> <goal>transform</goal> </goals> <phase>package</phase> <configuration> <outputFile>${basedir}/src/main/resources/</outputFile> ...
Is there an other way to do this?
regards,
Lars
PS: Oh, this thread should have been posted in the "Spring Development Tools" folder. Can it be moved?


Reply With Quote