Re: ZIP and UNZIP the code source in another project

2011-03-21 Thread Wendy Smoak
On Mon, Mar 21, 2011 at 4:26 AM, Nguyen Tien Luong wrote: > But does Overlay work in dev mode? > It means when I modify some JSP in PROJECT-A, the PROJECT-B will be updated > automatically at its deployment ( right click on PROJECT-B/ Run on server ) ? Maven doesn't have any right-click, it's a

Re: ZIP and UNZIP the code source in another project

2011-03-21 Thread Nguyen Tien Luong
B.war, but not in real time. Luong From: Wendy Smoak To: Maven Users List Sent: Fri, 18 March, 2011 15:04:34 Subject: Re: ZIP and UNZIP the code source in another project On Thu, Mar 17, 2011 at 10:08 AM, Nguyen Tien Luong wrote: >Hi maven's users,

Re: ZIP and UNZIP the code source in another project

2011-03-18 Thread Wendy Smoak
On Thu, Mar 17, 2011 at 10:08 AM, Nguyen Tien Luong wrote: >    Hi maven's users, > > Maybe the title is not understandable enough, here is my example: > > I have PROJECT-A which contains only JSP files. > > For each PROJECT-B which depends on PROJECT-A, I want that maven go and get > the > JSP f

Re: ZIP and UNZIP the code source in another project

2011-03-18 Thread Nguyen Tien Luong
e.org/plugins/maven-dependency-plugin/examples/unpacking-artifacts.html Luong From: Jochen Wiedmann To: Maven Users List Sent: Thu, 17 March, 2011 15:17:45 Subject: Re: ZIP and UNZIP the code source in another project In PROJECT-A, use the assembly plugin to c

Re: ZIP and UNZIP the code source in another project

2011-03-17 Thread Chris
On 3/17/2011 9:08 AM, Nguyen Tien Luong wrote: Hi maven's users, Maybe the title is not understandable enough, here is my example: I have PROJECT-A which contains only JSP files. For each PROJECT-B which depends on PROJECT-A, I want that maven go and get the JSP files in PROJECT-A and put

Re: ZIP and UNZIP the code source in another project

2011-03-17 Thread Jochen Wiedmann
In PROJECT-A, use the assembly plugin to create an artifact. In PROJECT-B, use the dependency-plugin to extract said artifact. On Thu, Mar 17, 2011 at 3:08 PM, Nguyen Tien Luong wrote: >    Hi maven's users, > > Maybe the title is not understandable enough, here is my example: > > I have PROJECT

ZIP and UNZIP the code source in another project

2011-03-17 Thread Nguyen Tien Luong
Hi maven's users, Maybe the title is not understandable enough, here is my example: I have PROJECT-A which contains only JSP files. For each PROJECT-B which depends on PROJECT-A, I want that maven go and get the JSP files in PROJECT-A and put in PROJECT-B with same folder's structure. So