final File dataYamlFile = new File(dataYamlFilename);
final List<StubHttpLifecycle> httpLifecycles = new YamlParser().parse(dataYamlFile.getParent(), FileUtils.constructReader(dataYamlFile));
System.out.println();
final StubbedDataManager stubbedDataManager = new StubbedDataManager(dataYamlFile, httpLifecycles);
final JettyFactory jettyFactory = new JettyFactory(commandLineArgs, stubbedDataManager);
final Server server = jettyFactory.construct();
if (commandLineArgs.containsKey(CommandLineInterpreter.OPTION_WATCH)) {
final String watchValue = commandLineArgs.get(CommandLineInterpreter.OPTION_WATCH);