rpgoldman / europa-pso

Automatically exported from code.google.com/p/europa-pso
0 stars 0 forks source link

Can JavaEuropaUI work out of the box #97

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
As I'm hoping to start getting the JavaUI installed on coworkers machines, I 
want to avoid as many issues as possible.

To get things working on my computer, I had to make two changes:

1. Instead of this link for lib/PSEngine.jar:
{{{
../../Europa/build/lib/PSEngine.jar
}}}

I needed it to be this:
{{{
../../PLASMA/dist/europa/lib/PSEngine.jar
}}}

2. Instead of this in build.xml:
{{{
<pathelement location="${europa.dir}/ext/ant/lib/ant-contrib-1.0b3.jar" />
}}}

I needed this:
{{{
<pathelement location="${europa.dir}/ext/ant/ant-contrib-1.0b3.jar" />
}}}

Is there a way to make those things more robust so those changes aren't 
necessary.  If not, would you be willing to update the wiki instructions to 
explain?

(on a related note, the JavaUI wiki page refers to build_all.xml, which I think 
has been changed to build.xml)

Original issue reported on code.google.com by tristanb...@gmail.com on 8 Feb 2011 at 7:14

GoogleCodeExporter commented 8 years ago
Now that I'm running with the version inside PLASMA instead of the separate 
JavaEuropUI code that I was using by mistake, the changes I have to make are:

 1. Copying PSEngine.jar to the right place.
 2. Update a line in the JavaUI .classpath to:
{{{
<classpathentry kind="lib" path="lib/PSEngine.jar" 
sourcepath="/PLASMA/src/PLASMA/System/base/swig"/>
}}}

Original comment by tristanb...@gmail.com on 10 Feb 2011 at 1:25