You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2014/09/01 22:46:22 UTC

[jira] [Updated] (TAP5-2174) Add a CLI to Jetty7Runner, to make it easier to script

     [ https://issues.apache.org/jira/browse/TAP5-2174?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-2174:
---------------------------------------
    Summary: Add a CLI to Jetty7Runner, to make it easier to script  (was: Add main method the Jetty7Runner)

> Add a CLI to Jetty7Runner, to make it easier to script
> ------------------------------------------------------
>
>                 Key: TAP5-2174
>                 URL: https://issues.apache.org/jira/browse/TAP5-2174
>             Project: Tapestry 5
>          Issue Type: New Feature
>          Components: tapestry-test
>    Affects Versions: 5.4
>            Reporter: Barry Books
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: enhancement
>
> Please add a main method to Jetty7Runner (really in tapestry-runner) so Jetty can easily be started from an IDE development environment. Something like
> 	public static void main(String[] args) throws Exception {
> 		String webapp = System.getProperty("webapp") == null ? "src/main/webapp" : System.getProperty("webapp");
> 		String context = System.getProperty("context") == null ? "/" : System.getProperty("context");
> 		String httpPort = System.getProperty("httpPort") == null ? "8080" : System.getProperty("httpPort");
> 		String sslPort = System.getProperty("sslPort") == null ? "8443" : System.getProperty("sslPort");
> 		new Jetty7Runner(webapp, context, new Integer(httpPort), new Integer(sslPort));
> 	}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)