Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
maven-scr-plugin-1.6.0, scr generator 1.1.0
-
None
Description
If I have a multimodule project with several OSGi bundles, which all use the scr plugin, there is an error during "mvn test". This is due to the scr plugin being bound to the phase "generate-resources" and maven-bundle plugin generating the manifest only in the package phase. If I have modules A and B (both packaging "bundle"), B depends upon A and building the multimodule with "mvn test" there is an error, because during the scr goal of B, it looks for the manifest of A, which is apparently not there, since it is not constructed with "test".
The error message is as follows:
...<during the "test" of module B>...
[INFO] [compiler:compile
]
[INFO] Compiling 13 source files to<path of module B>\target\classes
[INFO] [scr:scr
]
[ERROR] Unable to get manifest from artifact at <path of module A>\target\classes:0
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] SCR Descriptor parsing had failures (see log)
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 44 seconds
[INFO] Finished at: Thu Mar 10 10:43:58 CET 2011
[INFO] Final Memory: 93M/237M
[INFO] ------------------------------------------------------------------------