Hi Jason,
my app is a simplified-style app. For the moment I make a big jar with
my code, the XStream jar (xstream-1.4.2.jar) and a kxml jar
(kxml2-2.3.0.jar) via an ant script (fatjar plugin of eclipse).
<?xml version="1.0"?>
<project name="iRegulon_Alpha.jar" default="main" basedir=".">
<target name="main">
<fatjar.build output="iRegulon_Alpha-v0.5.jar">
<fatjar.manifest manifestfile="src/iRegulon/Cytoscape-
Plugin"/>
<fatjar.filesource path="/home/koen/workspace/iRegulon/
bin" relpath=""/>
<fatjar.jarsource file="/home/koen/Downloads/
xstream-1.4.2.jar" relpath=""/>
<fatjar.jarsource file="/home/koen/Downloads/
kxml2-2.3.0.jar" relpath=""/>
</fatjar.build>
</target>
</project>
Then i import the jar in my code:
import com.thoughtworks.xstream.XStream;
This way worked fine in Cytoscape 2.8.2.
Thanks,
Koen
On May 4, 7:42 pm, Jason Montojo <
jrr...@gmail.com> wrote:
> Hi Koen,
>
> How are you making your XStream JAR accessible to Cytoscape 3? And is your
> app a simplified-style app or OSGi app?
>
> Thanks,
> Jason
>