IBM / cics-bundle-maven

The plugin to build and deploy CICS bundles in a Maven build.
https://ibm.github.io/cics-bundle-maven/plugin-info.html
Eclipse Public License 2.0
18 stars 25 forks source link

Error reading Bundle-SymbolicName from OSGi manifest file when using Maven module cics-bundle #196

Closed JAMOGRAD closed 2 years ago

JAMOGRAD commented 2 years ago

I have a Maven Java project in the IBM Explorer for z/OS. This Eclipse has the Maven for Eclipse plug-in. I have Maven installed on my laptop.

I can build and package the Maven Java project as a "war" file successfully.

Using the instructions here, I create a new Maven project for the CICS bundle. This requires a "parent" so I select the Maven Java project that I already have. This tells me that the parent project must have a packaging type of "pom" so I come out, change the packaging type and do it again.

I don't know what archetypes are and there are no instructions so I just skip them.

Having done this, and Maven->Update Project, I am told to "register the plugin to the pom.xml of the CICS bundle module". I do that successfully. I am then told to change the packaging type to "cics-bundle" which I do by typing it in as it is not selectable.

Error reading Bundle-SymbolicName from OSGi manifest file (com.ibm.cics:cics-bundle-maven-plugin:1.0.3:build:default-build:compile)

I don't know what this means.

davenice commented 2 years ago

Hey James,

Are you able to upload the projects so we can try it? I think that might be easier than a back and forward!

If that's not possible, then I think what is being said here is that the cics-bundle-maven-plugin is trying to build the projects that are declared as its dependencies - one of them I think is an OSGi bundle but it can't read the Bundle-SymbolicName attrribute from the MANIFEST.MF file.

I think you're following these instructions - https://github.com/IBM/cics-bundle-maven#create-a-cics-bundle-in-a-separate-module-using-cics-bundle-maven-plugin - I wonder what dependencies you've set.

JAMOGRAD commented 2 years ago

I can share them with you internally. I am indeed following those instructions. The "Maven Module for the CICS bundle" has no dependencies, but the parent does. @davenice

holgerknoche commented 2 years ago

We have a similar problem. We use the maven-bundle-plugin to build our OSGi bundles, and this plugin writes the manifest after the compile phase (it has to, as it analyzes the class files). The OSGi bundles and CICS bundles are part of the same multi-module project. When running "mvn compile" on such a project, building the CICS bundle fails with the aforementioned error. "mvn install" works fine. When opening the project in Eclipse, it also shows the error, although it disappears after running "mvn install".

ind1go commented 2 years ago

It turns out this was a little bit of user error, which we've managed to rectify now.

@holgerknoche thank you for your comment. This looks like it is likely to be a different issue. Please could you raise a new issue, with your diagnostics in? Thank you.