JAL-3026 update README with instructions on setting up Eclipse for java2script and...
[jalview.git] / README
1 Jalview Readme
2 --------------
3
4
5 The source is available as a tar file and comes complete with the GNU General Public License. 
6
7 To build the application you will need a J2SDK 1.7+. 
8
9 An Ant build file (build.xml) is provided, you will need to install Apache Ant first. 
10 Run ant to view usage which will display a list of useful build targets.
11
12 Jalview is primarily developed with eclipse, and a .project file is provided to simplify importing the source into your own eclipse workspace. A NetBeans nbbuild.xml file is also provided for developing Jalview with NetBeans - but this is not officially supported.
13
14 You may also be able to use Borland JBuilder to build Jalview. A JBuilder project file 
15 (JalviewX.jpx, JalviewApplet.jpx) for both application and applet is provided, 
16 but the library dependencies are almost certainly out of date. See the build.xml 
17 for current dependencies.
18
19 ##
20
21 Jalview-JS
22
23 To enable transpilation of Jalview's code:
24
25 1. Locate the 'dropin' directory in your eclipse installation and copy swingjs/net.sf.j2s.core.jar to it.
26 2. Restart Eclipse
27 3. If all is well you should see the 'Java2Script' builder is listed as the primary builder for the Jalview project.
28   if not, this is because your properties file needs to have the standard java builder replaced with the following:
29   <name>net.sf.j2s.core.java2scriptbuilder</name>
30
31 - otherwise Javascript files will now be generated in the site/swingjs/j2s directory whenever a build occurs
32 4. Execute the 'unzip-to-site' task (if it isn't automatically run) to update the site directory with the latest versions of SwingJS, varna-js, JSmol and other dependencies required by Jalview.
33
34
35   
36
37
38 ##
39
40 For more help, read the file doc/building.html
41
42
43 ##################
44
45 To run application:
46
47 java -Djava.ext.dirs=JALVIEW_HOME/lib -cp JALVIEW_HOME/jalview.jar jalview.bin.Jalview
48
49 Replace JALVIEW_HOME with the full path to Jalview Installation Directory. If building from source:
50
51 java -Djava.ext.dirs=JALVIEW_BUILD/dist -cp JALVIEW_BUILD/dist/jalview.jar jalview.bin.Jalview
52
53
54 ##################
55
56
57 If you use a proxy server add 
58
59 -Dhttp.proxyServer=YOUR.SERVER -Dhttp.proxyPort=YOURPORT
60
61 If the proxy server requires authentication, add
62
63 -Dhttp.proxyUser=USERNAME -Dhttp.proxyPassword=PASSWORD