Closed GoogleCodeExporter closed 9 years ago
Now only "application.conf", "messages", "messages.*", "routes" files are being
copied. it's hardcoded in the AbstractPlayWarMojo java source file.
"warConfResourcesIncludes" and "warConfResourcesExcludes" filters will be added
to allow inclusion/exclusion configuration.
To be backward compatible, no additional resources will be copied to
"WEB-INF/classes" by default. It must be configured.
Original comment by gslowiko...@gmail.com
on 2 Jul 2012 at 7:17
Original comment by gslowiko...@gmail.com
on 2 Jul 2012 at 7:17
Original comment by gslowiko...@gmail.com
on 2 Jul 2012 at 7:18
Implemented in svn rev.10440
Original comment by gslowiko...@gmail.com
on 2 Jul 2012 at 7:19
Snapshot deployed.
Sample configuration:
<parent>
<groupId>com.google.code.maven-play-plugin</groupId>
<artifactId>play-app-default-parent</artifactId>
<version>1.0.0-beta3-SNAPSHOT</version> <!-- use latest snapshot version -->
</parent>
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-play-plugin</groupId>
<artifactId>play-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<warConfResourcesIncludes>**</warConfResourcesIncludes>
<!-- or <warConfResourcesIncludes>application.conf,messages,messages.*,routes,log4j.properties</warConfResourcesIncludes> -->
</configuration>
</plugin>
</plugins>
</build>
Original comment by gslowiko...@gmail.com
on 2 Jul 2012 at 7:26
Original issue reported on code.google.com by
martin.j...@gmail.com
on 2 Jul 2012 at 4:44