Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.0-alpha-2
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
If one could execute, e.g.
mvn webstart:run
to test the application locally (before deploying it), that would be very useful.
We currently use the following antrun configuration to execute the application:
<profiles>
<profile>
<id>run</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<java classname="${appMainClass}" failonerror="true" fork="true">
<sysproperty key="swing.aatext" value="true"/>
<classpath>
<path refid="maven.runtime.classpath"/>
</classpath>
</java>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Havard, is that something you would like to contribute ?