Re: CVS files being packaged in WAR

2008-01-03 Thread Stephane Nicoll
Upgrade to 2.0.2. This bug is fixed for over a year.

Stéphane

On Jan 1, 2008 1:59 PM, amit kumar <[EMAIL PROTECTED]> wrote:
> Hi,
> I am facing this problem of getting CVS files packaged in the WAR build from
> maven. I am overriding the maven's default directory layout. Below is the
> part of my pom.xml
>
>  
>   Portal
> 
> 
> org.apache.maven.plugins
> maven-war-plugin
> 2.0
> 
> 
> ${basedir}/webRoot
> 
> 
>  **/CVS
>   
> 
> 
> 
> org.apache.maven.plugins
> maven-compiler-plugin
> 
> 1.5
> 1.5
> true
> 
> 
> 
> ${basedir}/src
> C:\finalbuilds\readioneportal
> 
> 
>  ${basedir}/resources
> 
> 
> 
>
> How shall I avoid this? Any help?
>
> Regards,
> Amit
>



-- 
Large Systems Suck: This rule is 100% transitive. If you build one,
you suck" -- S.Yegge

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: CVS files being packaged in WAR

2008-01-02 Thread Wayne Fay
The stars in Maven paths work just like the stars in Ant paths, which
might be documented a little better so check the Ant site. Definitely
not the same as dot-dot.

Wayne

On 1/2/08, amit kumar <[EMAIL PROTECTED]> wrote:
> What do the stars represent here? Is it same as ../ in linux/windows? Or are
> they some sort of regular expression, because in my case CVS folder is there
> inside every folder not just one directory ( The project directory is a CVS
> checked out directory).
>
> Regards,
> Amit
>
> On Jan 3, 2008 1:01 AM, Lee Meador <[EMAIL PROTECTED]> wrote:
>
> > Try **/CVS/**/*.* or some similar set of stars.
> >
> > -- Lee
> >
> > On Jan 2, 2008 3:45 AM, amit kumar <[EMAIL PROTECTED]> wrote:
> >
> > > I want to exclude this CVS Folder present in every folder inside
> > > .
> > >
> > > On Jan 2, 2008 2:44 PM, amit kumar <[EMAIL PROTECTED]> wrote:
> > >
> > > > Can I exclude a directory as such?
> > > >
> > > >
> > > > On Jan 1, 2008 6:29 PM, amit kumar <[EMAIL PROTECTED]> wrote:
> > > >
> > > > > Hi,
> > > > > I am facing this problem of getting CVS files packaged in the WAR
> > > build
> > > > > from maven. I am overriding the maven's default directory layout.
> > > Below is
> > > > > the part of my pom.xml
> > > > >
> > > > >  
> > > > >   Portal
> > > > > 
> > > > > 
> > > > > org.apache.maven.plugins
> > > > > maven-war-plugin
> > > > > 2.0
> > > > > 
> > > > > 
> > > > > ${basedir}/webRoot
> > > > > 
> > > > > 
> > > > >  **/CVS
> > > > >   
> > > > > 
> > > > > 
> > > > > 
> > > > > org.apache.maven.plugins
> > > > > maven-compiler-plugin
> > > > > 
> > > > > 1.5
> > > > > 1.5
> > > > > true
> > > > > 
> > > > > 
> > > > > 
> > > > > ${basedir}/src
> > > > > C:\finalbuilds\readioneportal
> > > > > 
> > > > > 
> > > > >  ${basedir}/resources
> > > > > 
> > > > > 
> > > > > 
> > > > >
> > > > > How shall I avoid this? Any help?
> > > > >
> > > > > Regards,
> > > > > Amit
> > > > >
> > > >
> > > >
> > >
> >
> >
> >
> > --
> > -- Lee Meador
> > Sent from gmail. My real email address is lee AT leemeador.com
> >
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: CVS files being packaged in WAR

2008-01-02 Thread amit kumar
What do the stars represent here? Is it same as ../ in linux/windows? Or are
they some sort of regular expression, because in my case CVS folder is there
inside every folder not just one directory ( The project directory is a CVS
checked out directory).

Regards,
Amit

On Jan 3, 2008 1:01 AM, Lee Meador <[EMAIL PROTECTED]> wrote:

> Try **/CVS/**/*.* or some similar set of stars.
>
> -- Lee
>
> On Jan 2, 2008 3:45 AM, amit kumar <[EMAIL PROTECTED]> wrote:
>
> > I want to exclude this CVS Folder present in every folder inside
> > .
> >
> > On Jan 2, 2008 2:44 PM, amit kumar <[EMAIL PROTECTED]> wrote:
> >
> > > Can I exclude a directory as such?
> > >
> > >
> > > On Jan 1, 2008 6:29 PM, amit kumar <[EMAIL PROTECTED]> wrote:
> > >
> > > > Hi,
> > > > I am facing this problem of getting CVS files packaged in the WAR
> > build
> > > > from maven. I am overriding the maven's default directory layout.
> > Below is
> > > > the part of my pom.xml
> > > >
> > > >  
> > > >   Portal
> > > > 
> > > > 
> > > > org.apache.maven.plugins
> > > > maven-war-plugin
> > > > 2.0
> > > > 
> > > > 
> > > > ${basedir}/webRoot
> > > > 
> > > > 
> > > >  **/CVS
> > > >   
> > > > 
> > > > 
> > > > 
> > > > org.apache.maven.plugins
> > > > maven-compiler-plugin
> > > > 
> > > > 1.5
> > > > 1.5
> > > > true
> > > > 
> > > > 
> > > > 
> > > > ${basedir}/src
> > > > C:\finalbuilds\readioneportal
> > > > 
> > > > 
> > > >  ${basedir}/resources
> > > > 
> > > > 
> > > > 
> > > >
> > > > How shall I avoid this? Any help?
> > > >
> > > > Regards,
> > > > Amit
> > > >
> > >
> > >
> >
>
>
>
> --
> -- Lee Meador
> Sent from gmail. My real email address is lee AT leemeador.com
>


Re: CVS files being packaged in WAR

2008-01-02 Thread Lee Meador
Try **/CVS/**/*.* or some similar set of stars.

-- Lee

On Jan 2, 2008 3:45 AM, amit kumar <[EMAIL PROTECTED]> wrote:

> I want to exclude this CVS Folder present in every folder inside
> .
>
> On Jan 2, 2008 2:44 PM, amit kumar <[EMAIL PROTECTED]> wrote:
>
> > Can I exclude a directory as such?
> >
> >
> > On Jan 1, 2008 6:29 PM, amit kumar <[EMAIL PROTECTED]> wrote:
> >
> > > Hi,
> > > I am facing this problem of getting CVS files packaged in the WAR
> build
> > > from maven. I am overriding the maven's default directory layout.
> Below is
> > > the part of my pom.xml
> > >
> > >  
> > >   Portal
> > > 
> > > 
> > > org.apache.maven.plugins
> > > maven-war-plugin
> > > 2.0
> > > 
> > > 
> > > ${basedir}/webRoot
> > > 
> > > 
> > >  **/CVS
> > >   
> > > 
> > > 
> > > 
> > > org.apache.maven.plugins
> > > maven-compiler-plugin
> > > 
> > > 1.5
> > > 1.5
> > > true
> > > 
> > > 
> > > 
> > > ${basedir}/src
> > > C:\finalbuilds\readioneportal
> > > 
> > > 
> > >  ${basedir}/resources
> > > 
> > > 
> > > 
> > >
> > > How shall I avoid this? Any help?
> > >
> > > Regards,
> > > Amit
> > >
> >
> >
>



-- 
-- Lee Meador
Sent from gmail. My real email address is lee AT leemeador.com


Re: CVS files being packaged in WAR

2008-01-02 Thread amit kumar
I want to exclude this CVS Folder present in every folder inside
.

On Jan 2, 2008 2:44 PM, amit kumar <[EMAIL PROTECTED]> wrote:

> Can I exclude a directory as such?
>
>
> On Jan 1, 2008 6:29 PM, amit kumar <[EMAIL PROTECTED]> wrote:
>
> > Hi,
> > I am facing this problem of getting CVS files packaged in the WAR build
> > from maven. I am overriding the maven's default directory layout. Below is
> > the part of my pom.xml
> >
> >  
> >   Portal
> > 
> > 
> > org.apache.maven.plugins
> > maven-war-plugin
> > 2.0
> > 
> > 
> > ${basedir}/webRoot
> > 
> > 
> >  **/CVS
> >   
> > 
> > 
> > 
> > org.apache.maven.plugins
> > maven-compiler-plugin
> > 
> > 1.5
> > 1.5
> > true
> > 
> > 
> > 
> > ${basedir}/src
> > C:\finalbuilds\readioneportal
> > 
> > 
> >  ${basedir}/resources
> > 
> > 
> > 
> >
> > How shall I avoid this? Any help?
> >
> > Regards,
> > Amit
> >
>
>


Re: CVS files being packaged in WAR

2008-01-02 Thread amit kumar
Can I exclude a directory as such?

On Jan 1, 2008 6:29 PM, amit kumar <[EMAIL PROTECTED]> wrote:

> Hi,
> I am facing this problem of getting CVS files packaged in the WAR build
> from maven. I am overriding the maven's default directory layout. Below is
> the part of my pom.xml
>
>  
>   Portal
> 
> 
> org.apache.maven.plugins
> maven-war-plugin
> 2.0
> 
> 
> ${basedir}/webRoot
> 
> 
>  **/CVS
>   
> 
> 
> 
> org.apache.maven.plugins
> maven-compiler-plugin
> 
> 1.5
> 1.5
> true
> 
> 
> 
> ${basedir}/src
> C:\finalbuilds\readioneportal
> 
> 
>  ${basedir}/resources
> 
> 
> 
>
> How shall I avoid this? Any help?
>
> Regards,
> Amit
>


CVS files being packaged in WAR

2008-01-01 Thread amit kumar
Hi,
I am facing this problem of getting CVS files packaged in the WAR build from
maven. I am overriding the maven's default directory layout. Below is the
part of my pom.xml

 
  Portal


org.apache.maven.plugins
maven-war-plugin
2.0


${basedir}/webRoot


 **/CVS
  



org.apache.maven.plugins
maven-compiler-plugin

1.5
1.5
true



${basedir}/src
C:\finalbuilds\readioneportal


 ${basedir}/resources




How shall I avoid this? Any help?

Regards,
Amit