Compositor Code
A simple way to produce user interfaces for desktop apps.
Status: Beta
Brought to you by:
j_banana
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | This is the source tree for the Compositor project on SourceForge. http://compositor.sourceforge.net/ http://sourceforge.net/projects/compositor/ Building ======== To build, you need: - Java 1.7 or above - an internet connection - and Ant - see http://ant.apache.org/ Then: cd build ant all If you connect to the internet through a proxy and the build fails when using Ivy (which fetches dependencies for the example apps), try: ant -autoproxy all The Ant target "all" does all the things you need to be able to use Compositor but it does not build a jar. You can list the alternatives to "all" with: ant -p After building: - look at index.html - and try: cd compositor java -classpath examples;classes;resources Examples examples (Unix/Linux users use : instead of ; obvs) |