Hello,
I have a plugin for Cytoscape 3.0 with a dependency on the external library
org.apache.commons.math (2.1)
Compilation is ok but at runtime the dependency jar is not getting deployed
or bundled when starting Cytoscape 3.0:
org.osgi.framework.BundleException: Unresolved constraint in bundle
org.cytoscape.dyn [48]:
Unable to resolve 48.0: missing requirement [48.0] package;
(&(package=org.apache.commons.math)(version>=2.1.0)(!(version>=3.0.0)))
The dependency is specified as a Maven dependency in the pom file:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.1</version>
</dependency>
How can I fix this?
Thanks in advance,
Sabina