Author: wsmoak Date: Fri Jun 2 20:16:43 2006 New Revision: 411365 URL: http://svn.apache.org/viewvc?rev=411365&view=rev Log: Change the location of the resource bundle. (Maven Archetype currently will not put anything but Java sources in a package structure.) Add Jetty 6 plugin configuration.
Modified: struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/pom.xml struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/src/main/webapp/messages.jspf Modified: struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/pom.xml?rev=411365&r1=411364&r2=411365&view=diff ============================================================================== --- struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/pom.xml (original) +++ struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/pom.xml Fri Jun 2 20:16:43 2006 @@ -61,6 +61,8 @@ <build> <plugins> + + <!-- mvn package cargo:start --> <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> @@ -80,7 +82,25 @@ </configuration> </configuration> </plugin> + + <!-- mvn package jetty6:run --> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty6-plugin</artifactId> + <configuration> + <scanIntervalSeconds>10</scanIntervalSeconds> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-j2ee_1.4_spec</artifactId> + <version>1.0</version> + <scope>provided</scope> + </dependency> + </dependencies> + </plugin> </plugins> + <finalName>${artifactId}</finalName> </build> Modified: struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/src/main/webapp/messages.jspf URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/src/main/webapp/messages.jspf?rev=411365&r1=411364&r2=411365&view=diff ============================================================================== --- struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/src/main/webapp/messages.jspf (original) +++ struts/sandbox/trunk/archetypes/shale-blank/src/main/resources/archetype-resources/src/main/webapp/messages.jspf Fri Jun 2 20:16:43 2006 @@ -16,6 +16,8 @@ --%> +<%-- The Bundle.properties file is in the src/main/resources directory. --%> + <f:loadBundle var="messages" - basename="${package}.Bundle"/> + basename="Bundle"/>