[Jsptest-svn-commits] SF.net SVN: jsptest:[237] trunk
Status: Alpha
Brought to you by:
lkoskela
From: <lko...@us...> - 2008-11-05 22:36:47
|
Revision: 237 http://jsptest.svn.sourceforge.net/jsptest/?rev=237&view=rev Author: lkoskela Date: 2008-11-05 22:36:42 +0000 (Wed, 05 Nov 2008) Log Message: ----------- Added an explicit '<resource/>' reference to 'src/main/resources'. Apparently that is nowadays required by Maven because the acceptance tests started blowing up due to not finding 'jsptest.properties' in the classpath. Modified Paths: -------------- trunk/jsptest-jsp12/pom.xml trunk/jsptest-jsp20/pom.xml trunk/jsptest-jsp21/pom.xml Modified: trunk/jsptest-jsp12/pom.xml =================================================================== --- trunk/jsptest-jsp12/pom.xml 2008-06-27 11:47:44 UTC (rev 236) +++ trunk/jsptest-jsp12/pom.xml 2008-11-05 22:36:42 UTC (rev 237) @@ -38,4 +38,11 @@ <version>4.1.30</version> </dependency> </dependencies> + <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> </project> Modified: trunk/jsptest-jsp20/pom.xml =================================================================== --- trunk/jsptest-jsp20/pom.xml 2008-06-27 11:47:44 UTC (rev 236) +++ trunk/jsptest-jsp20/pom.xml 2008-11-05 22:36:42 UTC (rev 237) @@ -39,15 +39,10 @@ </dependency> </dependencies> <build> - <plugins> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <configuration> - <descriptors> - <descriptor>src/main/assembly/bin.xml</descriptor> - </descriptors> - </configuration> - </plugin> - </plugins> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> </build> </project> Modified: trunk/jsptest-jsp21/pom.xml =================================================================== --- trunk/jsptest-jsp21/pom.xml 2008-06-27 11:47:44 UTC (rev 236) +++ trunk/jsptest-jsp21/pom.xml 2008-11-05 22:36:42 UTC (rev 237) @@ -33,4 +33,11 @@ <version>6.0.13</version> </dependency> </dependencies> + <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |