...
Starting Orion 1.x with Clover jar added to its classpath. For example if you have instrumented your source code with Clover you'll need to add the Clover jar to the classpath.
| Code Block | ||
|---|---|---|
| ||
InstalledLocalContainer container = new Orion1xInstalledLocalContainer(
new OrionStandaloneLocalConfiguration("target/orion1x"));
container.setHome("c:/apps/orion-1.6.0b");
container.setExtraClasspath(new String[] { "libs/clover.jar" });
container.start();
|
...