Re: Ideal File Placement

2009-03-28 Thread Sammy

On 2009-03-27 01:57:35 +0200, Sammy pico...@gmail.com said:


Hello,

In a multi-module maven project, a webapp module has java, resources 
and WEB-INF folders. In which folder should jsp, css, web.xml, spring 
XML configurations and other files go?


Thank you everyone; yes it's a WAR file, so this answers my question.

--
Thank you,
Sammy



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Ideal File Placement

2009-03-27 Thread Manos Batsis

Sammy wrote:

Hello,

In a multi-module maven project, a webapp module has java, resources and 
WEB-INF folders. In which folder should jsp, css, web.xml, spring XML 
configurations and other files go?




In a war module, src/main/webapp usually contains:

WEB-INF
jsp
css
images
index.html

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



RE: Ideal File Placement

2009-03-26 Thread Martin Gainty

are you building a war or an ear
if ear which AppServer will you deploy to?

?
Martin 
__ 
Verzicht und Vertraulichkeitanmerkung / Disclaimer and confidentiality note 
Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
This message is confidential and may be privileged. If you are not the intended 
recipient, we kindly ask you to  please inform the sender. Any unauthorised 
dissemination or copying hereof is prohibited. This message serves for 
information purposes only and shall not have any legally binding effect. Given 
that e-mails can easily be subject to manipulation, we can not accept any 
liability for the content provided.





 

 To: users@maven.apache.org
 From: pico...@gmail.com
 Subject: Ideal File Placement
 Date: Fri, 27 Mar 2009 01:57:35 +0200
 
 Hello,
 
 In a multi-module maven project, a webapp module has java, resources 
 and WEB-INF folders. In which folder should jsp, css, web.xml, spring 
 XML configurations and other files go?
 
 -- 
 Thank you,
 Sammy
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org
 

_
Internet Explorer 8 – Get your Hotmail Accelerated.  Download free!
http://clk.atdmt.com/MRT/go/141323790/direct/01/

Re: Ideal File Placement

2009-03-26 Thread Rusty Wright

For a tomcat app I put them in

src/main/webapp/WEB-INF (web.xml and spring config)
src/main/webapp/WEB-INF/views (with spring's view resolver configured to use 
this)
src/main/webapp/images
src/main/webapp/css

Whatever is in

src/main/resources

will end up in

tomcat/webapps/myWebApp/WEB-INF/classes

which puts it on the classpath.


Sammy wrote:

Hello,

In a multi-module maven project, a webapp module has java, resources and 
WEB-INF folders. In which folder should jsp, css, web.xml, spring XML 
configurations and other files go?




-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org