Hi Jose,
I was able to set up eclipse debugging using this tutorial:
http://opentutorials.cgl.ucsf.edu/index.php/Tutorial:Remote_Execution_for_Debugging
Are you making a bundle or a simple app? Are you using the maven-bundle-plugin to create your jar?
Ruth
--
You received this message because you are subscribed to the Google Groups "cytoscape-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cytoscape-disc...@googlegroups.com.
To post to this group, send email to cytoscap...@googlegroups.com.
Visit this group at http://groups.google.com/group/cytoscape-discuss?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Hi Jose,
If it is bundle app I don’t think the dependencies are exported into the jar. (not sure though). In my bundle app all my dependencies are listed in the Manifest file of the jar under “Import-Package”. Is lucene listed in the Import-Package of your Manifest?
Bundle-Version: 0.0.1.SNAPSHOTCreated-By: Apache Maven Bundle PluginImport-Package: javax.swing,org.apache.lucene.analysis,org.apache.lucene.analysis.standard,org.apache.lucene.document,org.apache.lucene.index,org.apache.lucene.queryparser.classic,org.apache.lucene.search,org.apache.lucene.store,org.apache.lucene.util,org.cytoscape.application;version="[3.0,4)",org.cytoscape.application.swing;version="[3.0,4)",org.cytoscape.service.util;version="[3.0,4)",org.cytoscape.view.model;version="[3.0,4)",org.osgi.framework;version="[1.5,2)"Tool: Bnd-1.50.0
Hi Jose,
When you say the app fails to load in cytoscape is there an error in the cytoscape console or do you just fail to see your app in the apps menu?
Hi Jose,
I had the same issue. My Cyactivator class was never being called. I was missing Bundle-Activator in my Manifest file which specified my CyActivator class.
(to the maven-bundle-plugin in my pom file I was missing: <Bundle-Activator>${bundle.namespace}.CyActivator</Bundle-Activator>)