Search code examples
wso2siddhi

Required bundle manifest headers do not exist wso2


I am using wso2 SP 4.3.0 and i want extend strem processing with custom function. I have follow this documentation: https://docs.wso2.com/display/SP430/Writing+Custom+Siddhi+Extensions#WritingCustomSiddhiExtensions-siddhi-script so i created maven archetype, a modified logical function, and i created jar with maven build.

I moved .jar file in \lib but when i starting service wso2-editor console show me

enter image description here

How can i solve it?

Thanks all.


Solution

  • I have find this solution

    build my jar with this parameter

    on parent pom i run mvn package with following parameter: SkipTest checkstyle.skip=true findbugs.skip=true

    this solution build a correct jar and solve for me.

    Bye