Project p = new Project();
SplashTask t = new SplashTask();
t.setProject(p);
t.execute();
// give it some time to display
try {
Thread.currentThread().sleep(2000);
} catch (InterruptedException e) {
} // end of try-catch
p.fireBuildFinished(null);
System.err.println("finished");
try {
Thread.currentThread().sleep(2000);
} catch (InterruptedException e) {
} // end of try-catch
System.err.println("exiting");
System.exit(0);