flybyray / maven-play-plugin

Automatically exported from code.google.com/p/maven-play-plugin
0 stars 0 forks source link

Add an option to pass "precompiled" system property to Play! Server when starting it #80

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Allow to pass "precompiled" system property when starting Play! Server.
Implement for: "play:run", "play:test" and "play:start" mojos.

Original issue reported on code.google.com by gslowiko...@gmail.com on 18 May 2012 at 8:14

GoogleCodeExporter commented 9 years ago
Implemented in svn rev.9265, snapshot deployed.

Original comment by gslowiko...@gmail.com on 18 May 2012 at 8:20

GoogleCodeExporter commented 9 years ago
After implementing issue #81 
(http://code.google.com/p/maven-play-plugin/issues/detail?id=81) this property 
is not needed. Use "serverJvmArgs" configuration parameter instead:

<plugin>
    <groupId>com.google.code.maven-play-plugin</groupId>
    <artifactId>play-maven-plugin</artifactId>
    <extensions>true</extensions>
    <configuration>
        <serverJvmArgs>-Dprecompiled=true</serverJvmArgs>
    </configuration>
</plugin>

Implementation done in svn rev.9265 removed in svn rev.9287.

Original comment by gslowiko...@gmail.com on 22 May 2012 at 1:09

GoogleCodeExporter commented 9 years ago
From command line this would look like:

mvn play:start -Dplay.serverJvmArgs="-Dprecompiled=true"

Original comment by gslowiko...@gmail.com on 22 May 2012 at 1:12

GoogleCodeExporter commented 9 years ago
Snapshot deployed

Original comment by gslowiko...@gmail.com on 22 May 2012 at 1:14