[go: up one dir, main page]

Menu

Tree [92068c] mvn /
 History

HTTPS access


File Date Author Commit
 apps 2019-09-03 JBanana JBanana [92068c] mvn: examples jar is ok
 core 2019-09-02 JBanana JBanana [ac4310] mvn: moved AsciiView to the right place
 doclet 2019-07-17 JBanana JBanana [09ddb1] Maven: prep for multi-module build
 examples 2019-08-28 JBanana JBanana [673b34] mvn: fixed file open for Examples
 playarea 2011-03-20 JBanana JBanana [4d147f] Ignore generated dirs; include playarea
 .gitignore 2019-07-21 JBanana JBanana [90e75d] mvn: update ignores
 compositor.css 2019-01-05 JBanana JBanana [2784f2] Documentation: tweaks; desaturated logo
 compositor.html 2011-03-18 JBanana JBanana [5a24b1] Initial import of old Xing into new Compositor
 compositor.js 2019-08-19 JBanana JBanana [806dac] mvn: fixed docs
 examples.bat 2019-08-27 JBanana JBanana [6f1671] examples.bat should be executable
 examples.sh 2019-08-27 JBanana JBanana [2813ef] Docs: Ant->mvn; examples script usage
 history.txt 2018-11-04 JBanana JBanana [2e2a44] Added CustomCursor
 howthingswork.html 2019-08-19 JBanana JBanana [806dac] mvn: fixed docs
 index.html 2019-08-27 JBanana JBanana [2813ef] Docs: Ant->mvn; examples script usage
 layout.html 2019-08-19 JBanana JBanana [806dac] mvn: fixed docs
 licence.txt 2018-03-27 JBanana JBanana [626ba9] Fixed licence copyright dates
 pom.xml 2019-07-21 JBanana JBanana [2d8a0f] mvn: add apps as a build module
 quickstart.html 2019-08-19 JBanana JBanana [806dac] mvn: fixed docs
 readme 2018-01-17 JBanana JBanana [3e64e4] Better readme wording
 todo.txt 2016-03-18 JBanana JBanana [1cd213] Grid, GridRow to root package (i.e. net.sf.comp...
 wishlist.txt 2015-11-03 JBanana JBanana [f1d509] Updated todo and wishlist

Read Me

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)