diff options
author | Ilia Motornyi <elmot@vaadin.com> | 2018-08-30 17:08:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-30 17:08:09 +0300 |
commit | 47771ffed6af532b0fb9a910e8b965d485730158 (patch) | |
tree | c51c73d5fff902aa9a22ee962995b3e0e41ecd85 /uitest | |
parent | 7e6ffe5dd73dcaf38fbf38bdaa7698f66d441713 (diff) | |
download | vaadin-framework-47771ffed6af532b0fb9a910e8b965d485730158.tar.gz vaadin-framework-47771ffed6af532b0fb9a910e8b965d485730158.zip |
Run devserver under IDEA via maven target (#11152)
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/pom.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/uitest/pom.xml b/uitest/pom.xml index 91ea2e862c..ca27cf17a6 100644 --- a/uitest/pom.xml +++ b/uitest/pom.xml @@ -330,6 +330,45 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <executions> + <execution> + <id>run-development-server</id> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable>java</executable> + <arguments> + <argument>-ea</argument> + <argument>-classpath</argument> + <classpath /> + <argument>com.vaadin.launcher.DevelopmentServerLauncher</argument> + </arguments> + <classpathScope>test</classpathScope> + </configuration> + </execution> + <execution> + <id>debug-development-server</id> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable>java</executable> + <arguments> + <argument>-ea</argument> + <argument>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</argument> + <argument>-classpath</argument> + <classpath /> + <argument>com.vaadin.launcher.DevelopmentServerLauncher</argument> + </arguments> + <classpathScope>test</classpathScope> + </configuration> + </execution> + </executions> + </plugin> </plugins> <pluginManagement> <plugins> |