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
How can i solve it?
Thanks all.
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