[
http://jira.codehaus.org/browse/MGWT-168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
nicolas de loof closed MGWT-168.
--------------------------------
Resolution: Won't Fix
Assignee: nicolas de loof
Use maven profiles to configure your resources path depending on environment.
Here is a sample, running mvn gwt:run will use dev resources, running mvn
install -Prelease will configure the production resources :
{code:xml}
<build>
<resources>
<resource>
<directory>src/env/${environment}</directory>
</resource>
</resources>
...
</build>
<profiles>
<profile>
<id>developement</id>
<activeByDefault>true</activeByDefault>
<properties>
<environment>dev</environment>
</properties>
</profile>
<profile>
<id>release</id>
<properties>
<environment>prod</environment>
</properties>
</profile>
{code}
> provide the capability to support additional classpath entries
> --------------------------------------------------------------
>
> Key: MGWT-168
> URL: http://jira.codehaus.org/browse/MGWT-168
> Project: Maven 2.x GWT Plugin
> Issue Type: Improvement
> Affects Versions: 1.2
> Reporter: Ryan Heaton
> Assignee: nicolas de loof
> Attachments: gwt-module-additional-entries.diff
>
>
> It would be nice to be able to specify any additional classpath entries that
> should be prepended to the the classpath when invoking a gwt shell (compile,
> devmode, etc.)
> Please apply the attached patch.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email