From 0e7b21b78863d5680e279256c929cd0203bb25e4 Mon Sep 17 00:00:00 2001 From: Ilia Motornyi Date: Tue, 28 Feb 2017 09:50:23 +0200 Subject: Easy DevelopmentServerLauncher run with maven (#8677) Add Maven target for running or debugging the development server and instructions for IDEA. --- uitest/pom.xml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'uitest/pom.xml') diff --git a/uitest/pom.xml b/uitest/pom.xml index 5473a9d2f8..640d6f9150 100644 --- a/uitest/pom.xml +++ b/uitest/pom.xml @@ -356,6 +356,46 @@ true + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + + run-development-server + + exec + + + java + + -ea + -classpath + + com.vaadin.launcher.DevelopmentServerLauncher + + test + + + + debug-development-server + + exec + + + java + + -ea + -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 + -classpath + + com.vaadin.launcher.DevelopmentServerLauncher + + test + + + + -- cgit v1.2.3