// Initialize the argument parser
SimpleJSAP jsap = new SimpleJSAP("java -jar Mockey.jar", "Starts a Jetty server running Mockey");
jsap.registerParameter(new FlaggedOption(ARG_PORT, JSAP.INTEGER_PARSER, "8080", JSAP.NOT_REQUIRED, 'p',
ARG_PORT, "port to run Jetty on"));
jsap.registerParameter(new FlaggedOption(BSC.FILE, JSAP.STRING_PARSER,
MockeyXmlFileManager.MOCK_SERVICE_DEFINITION, JSAP.NOT_REQUIRED, 'f', BSC.FILE,
"Relative path to a mockey-definitions file to initialize Mockey, relative to where you're starting Mockey"));
jsap.registerParameter(new FlaggedOption(BSC.URL, JSAP.STRING_PARSER, "", JSAP.NOT_REQUIRED, 'u', BSC.URL,
"URL to a mockey-definitions file to initialize Mockey"));