You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Rex Huang <re...@gmail.com> on 2008/01/30 13:40:02 UTC

can maven package all the dependence jar files in the war file?

I want to generate a war file, the dependence jar files are needed to
package in it.
and also the class files in WEB-INF\classes, I want to package it in a jar
file.
all the jar files should be put in WEB-INF\lib.

Can I make it work?

BR//Rex

RE: can maven package all the dependence jar files in the war file?

Posted by ni...@planet.nl.
All Java files under src/main/java will be compiled into WEB-INF/classes in your final war. (To be honest, all java files will be compiled to target/classes, all resources from src/main/resources will be copied (and filtered) to target/classes and finally target/classes will be copied to WEB-INF/classes)

Hth,

Nick Stolwijk


-----Original Message-----
From: Wayne Fay [mailto:waynefay@gmail.com]
Sent: Wed 1/30/2008 4:40 PM
To: Maven Users List
Subject: Re: can maven package all the dependence jar files in the war file?
 
Don't put any Java code in your WAR project, instead all code must
come from other projects that you depend on. Assuming this is true,
this is just how the WAR plugin works with default configuration.

Personally we are building EARs so I don't want my WARs loaded up with
all those JARs. Instead I like nice "thin WARs" and fat EARs.

Wayne

On 1/30/08, Rex Huang <re...@gmail.com> wrote:
> I want to generate a war file, the dependence jar files are needed to
> package in it.
> and also the class files in WEB-INF\classes, I want to package it in a jar
> file.
> all the jar files should be put in WEB-INF\lib.
>
> Can I make it work?
>
> BR//Rex
>

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



Re: can maven package all the dependence jar files in the war file?

Posted by Wayne Fay <wa...@gmail.com>.
Don't put any Java code in your WAR project, instead all code must
come from other projects that you depend on. Assuming this is true,
this is just how the WAR plugin works with default configuration.

Personally we are building EARs so I don't want my WARs loaded up with
all those JARs. Instead I like nice "thin WARs" and fat EARs.

Wayne

On 1/30/08, Rex Huang <re...@gmail.com> wrote:
> I want to generate a war file, the dependence jar files are needed to
> package in it.
> and also the class files in WEB-INF\classes, I want to package it in a jar
> file.
> all the jar files should be put in WEB-INF\lib.
>
> Can I make it work?
>
> BR//Rex
>

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


RE: can maven package all the dependence jar files in the war file?

Posted by Bl...@ubs.com.
Rex,

I think you can set archiveClasses to true if you want the WAR's class
files in a jar file:

http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#archiveCl
asses 

-----Original Message-----
From: Rex Huang [mailto:rex.huang936@gmail.com] 
Sent: Wednesday, January 30, 2008 7:40 AM
To: users@maven.apache.org
Subject: can maven package all the dependence jar files in the war file?

I want to generate a war file, the dependence jar files are needed to
package in it.
and also the class files in WEB-INF\classes, I want to package it in a
jar file.
all the jar files should be put in WEB-INF\lib.

Can I make it work?

BR//Rex

Visit our website at http://www.ubs.com

This message contains confidential information and is intended only 
for the individual named.  If you are not the named addressee you 
should not disseminate, distribute or copy this e-mail.  Please 
notify the sender immediately by e-mail if you have received this 
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free 
as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses.  The sender therefore 
does not accept liability for any errors or omissions in the contents 
of this message which arise as a result of e-mail transmission.  If 
verification is required please request a hard-copy version.  This 
message is provided for informational purposes and should not be 
construed as a solicitation or offer to buy or sell any securities or 
related financial instruments.


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