No but it makes it easy to customize Jetty parameters (port, context path, etc...) or to use a specific version of Jetty. Anyway, if Is a problem including jetty-webapp and jetty-server at runtime I can use StartExamples.
On Tue, Nov 21, 2017 at 3:17 PM, Martin Grigorov <[email protected]> wrote: > Is it better than running StartExamples.java as a main-class ? > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Nov 21, 2017 at 4:01 PM, Andrea Del Bene <[email protected]> > wrote: > > > This one: > > > > http://eclipse-jetty.github.io/ > > > > I use it very often also to debug Wicket application. > > > > On Tue, Nov 21, 2017 at 2:54 PM, Martin Grigorov <[email protected]> > > wrote: > > > > > On Tue, Nov 21, 2017 at 2:00 PM, <[email protected]> wrote: > > > > > > > Repository: wicket > > > > Updated Branches: > > > > refs/heads/master 11877422b -> 196c33c8b > > > > > > > > > > > > Jetty dependencies scope overridden to run wicket-examples with > Eclipse > > > > Jetty Integration plugin > > > > > > > > > > What is Jetty integration plugin ? > > > > > > > > > > > > > > > > > > Project: http://git-wip-us.apache.org/repos/asf/wicket/repo > > > > Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/ > 196c33c8 > > > > Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/196c33c8 > > > > Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/196c33c8 > > > > > > > > Branch: refs/heads/master > > > > Commit: 196c33c8b7f03c6d1f3111e0bb1f5d15645f2206 > > > > Parents: 1187742 > > > > Author: Andrea Del Bene <[email protected]> > > > > Authored: Tue Nov 21 12:56:14 2017 +0100 > > > > Committer: Andrea Del Bene <[email protected]> > > > > Committed: Tue Nov 21 12:56:14 2017 +0100 > > > > > > > > ------------------------------------------------------------ > ---------- > > > > wicket-examples/pom.xml | 2 ++ > > > > 1 file changed, 2 insertions(+) > > > > ------------------------------------------------------------ > ---------- > > > > > > > > > > > > http://git-wip-us.apache.org/repos/asf/wicket/blob/ > > > > 196c33c8/wicket-examples/pom.xml > > > > ------------------------------------------------------------ > ---------- > > > > diff --git a/wicket-examples/pom.xml b/wicket-examples/pom.xml > > > > index 183cb3f..20e6f47 100644 > > > > --- a/wicket-examples/pom.xml > > > > +++ b/wicket-examples/pom.xml > > > > @@ -64,10 +64,12 @@ > > > > <dependency> > > > > <groupId>org.eclipse.jetty</groupId> > > > > <artifactId>jetty-server</artifactId> > > > > + <scope>runtime</scope> > > > > </dependency> > > > > <dependency> > > > > <groupId>org.eclipse.jetty</groupId> > > > > <artifactId>jetty-webapp</artifactId> > > > > + <scope>runtime</scope> > > > > </dependency> > > > > <dependency> > > > > <groupId>org.eclipse.jetty</groupId> > > > > > > > > > > > > > >
