public NexusStatusUtil() {
int port = TestProperties.getInteger("nexus.application.port");
File dir = new File(TestProperties.getAll().get("nexus.base.dir")).getAbsoluteFile();
try {
nexusBooter = new EmbeddedNexusBooter(dir, port);
}
catch (Exception e) {
throw Throwables.propagate(e);
}
}