Re: Help me about changes plugin

2006-05-04 Thread Lee Meador

Its funny, the changelog only seems to care about "sources" and changes to
things like pom.xml and other files that are not considered source cause
that message.

On 5/2/06, Gautham Pamu <[EMAIL PROTECTED]> wrote:


Hi Lee,

I tried to generate the changelog report. I have the scm defined in my pom
but it says.. no sources found to create a report.

No sources found to create a report.

 
   org.codehaus.mojo
   changelog-maven-plugin
   


Thanks
Gautham Pamu

/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:
>
> I have my cvs repository in C:/viewcvsinstall/CVSROOT and it has test1
> directory for my projects. I have defined following  tag in my
> project's pom.xml but I get invalid scm tag error.
>
>   
>
>
scm:cvs|local|C:/viewcvsinstall/CVSROOT|test1/Project1
>
>
scm:cvs|local|C:/viewcvsinstall/CVSROOT|Project1/${artifactId}
>   
>
> While if I do checkout with following(at command prompt) then it works
> fine. We can see URL is same.
>
> mvn scm:checkout
> -DconnectionUrl="scm:cvs|local|C:/viewcvsinstall/CVSROOT|test1/Project1"
>
> Please suggest the solution.
>
> Thanks,
> Vijay
>
>
> From: [EMAIL PROTECTED] on behalf of Lee Meador
> Sent: Tue 4/18/2006 11:25 AM
> To: Maven Users List
> Subject: Re: Help me about changes plugin
>
>
>
> Put this in your pom.xml to add a report showing what has changed in the
> version control during the last 30 days. There are some config settings
> you
> can add that change just what is shown in the report.
>
> 
> 
> 
> org.codehaus.mojo
> changelog-maven-plugin
> 
> 
> 
>
> When you do a mvn site, it will generate the reports as html and put
them
> under the 'target' folder.
>
> You also have to be sure and set the  section in your pom so it
knows
> how to talk to the version control:
>
> 
>
>
scm:svn:svn://subversion.company.com/project/trunk/base/
>
>
scm:svn:svn://subversion.company.com/project/trunk/base/
> 
> 
>
> You can find the right connection url by going to a blank working folder
> and
> doing this from command line:
>
> mvn scm:checkout -DconnectionUrl="scm:svn:svn://sub..."
>
> with the same thing as is in the  tag. When it checks out
your
> project, you have it right.
>
> There used to be some info at
> http://mojo.codehaus.org/*changelog*-*maven*-*
> plugin*/howto.html<
> http://mojo.codehaus.org/changelog-maven-plugin/howto.html>
> but it seems to point back to
> http://maven.apache.org/plugins/maven-changelog-plugin now and that
> doesn't
> have anything there.
>
> I think the 'changes' plugin is used to generate a page for the site
> showing
> what has changed between version 1.1 and 1.2 for example. I'm not really
> sure.
>
> -- Lee Meador
>
> On 4/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:
> >
> > As per requirement, I have to prepares reports about changes in files
> > between current version and previous version of files so could any
body
> > suggest me the approach for achieving this goal.
> >
> > I got to know from maven website that there are two plugins neams as
> > "changes" and "changelog" but when I click on those, I get page not
> found
> > problem.
> >
> > Looking for the help.
> >
> > Thanks in advance.
> >
> > Vijay
> >
> >
> >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> --
> -- Lee Meador
> Sent from gmail. My real email address is [EMAIL PROTECTED]
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
-Gautham Pamu





--
-- Lee Meador
Sent from gmail. My real email address is [EMAIL PROTECTED]


Re: Help me about changes plugin

2006-05-02 Thread Gautham Pamu

Hi Lee,

I tried to generate the changelog report. I have the scm defined in my pom
but it says.. no sources found to create a report.

No sources found to create a report.


  org.codehaus.mojo
  changelog-maven-plugin
  


Thanks
Gautham Pamu

/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:


I have my cvs repository in C:/viewcvsinstall/CVSROOT and it has test1
directory for my projects. I have defined following  tag in my
project's pom.xml but I get invalid scm tag error.

  


scm:cvs|local|C:/viewcvsinstall/CVSROOT|test1/Project1


scm:cvs|local|C:/viewcvsinstall/CVSROOT|Project1/${artifactId}
  

While if I do checkout with following(at command prompt) then it works
fine. We can see URL is same.

mvn scm:checkout
-DconnectionUrl="scm:cvs|local|C:/viewcvsinstall/CVSROOT|test1/Project1"

Please suggest the solution.

Thanks,
Vijay


From: [EMAIL PROTECTED] on behalf of Lee Meador
Sent: Tue 4/18/2006 11:25 AM
To: Maven Users List
Subject: Re: Help me about changes plugin



Put this in your pom.xml to add a report showing what has changed in the
version control during the last 30 days. There are some config settings
you
can add that change just what is shown in the report.




org.codehaus.mojo
changelog-maven-plugin




When you do a mvn site, it will generate the reports as html and put them
under the 'target' folder.

You also have to be sure and set the  section in your pom so it knows
how to talk to the version control:



scm:svn:svn://subversion.company.com/project/trunk/base/

scm:svn:svn://subversion.company.com/project/trunk/base/



You can find the right connection url by going to a blank working folder
and
doing this from command line:

mvn scm:checkout -DconnectionUrl="scm:svn:svn://sub..."

with the same thing as is in the  tag. When it checks out your
project, you have it right.

There used to be some info at
http://mojo.codehaus.org/*changelog*-*maven*-*
plugin*/howto.html<
http://mojo.codehaus.org/changelog-maven-plugin/howto.html>
but it seems to point back to
http://maven.apache.org/plugins/maven-changelog-plugin now and that
doesn't
have anything there.

I think the 'changes' plugin is used to generate a page for the site
showing
what has changed between version 1.1 and 1.2 for example. I'm not really
sure.

-- Lee Meador

On 4/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:
>
> As per requirement, I have to prepares reports about changes in files
> between current version and previous version of files so could any body
> suggest me the approach for achieving this goal.
>
> I got to know from maven website that there are two plugins neams as
> "changes" and "changelog" but when I click on those, I get page not
found
> problem.
>
> Looking for the help.
>
> Thanks in advance.
>
> Vijay
>
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
-- Lee Meador
Sent from gmail. My real email address is [EMAIL PROTECTED]





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





--
-Gautham Pamu


RE: Help me about changes plugin

2006-04-18 Thread Vijay Shanker
I have my cvs repository in C:/viewcvsinstall/CVSROOT and it has test1 
directory for my projects. I have defined following  tag in my project's 
pom.xml but I get invalid scm tag error.
 
  

scm:cvs|local|C:/viewcvsinstall/CVSROOT|test1/Project1

scm:cvs|local|C:/viewcvsinstall/CVSROOT|Project1/${artifactId}
  
 
While if I do checkout with following(at command prompt) then it works fine. We 
can see URL is same.
 
mvn scm:checkout 
-DconnectionUrl="scm:cvs|local|C:/viewcvsinstall/CVSROOT|test1/Project1"
 
Please suggest the solution.
 
Thanks,
Vijay
 
 
From: [EMAIL PROTECTED] on behalf of Lee Meador
Sent: Tue 4/18/2006 11:25 AM
To: Maven Users List
Subject: Re: Help me about changes plugin



Put this in your pom.xml to add a report showing what has changed in the
version control during the last 30 days. There are some config settings you
can add that change just what is shown in the report.




org.codehaus.mojo
changelog-maven-plugin




When you do a mvn site, it will generate the reports as html and put them
under the 'target' folder.

You also have to be sure and set the  section in your pom so it knows
how to talk to the version control:

 
 
scm:svn:svn://subversion.company.com/project/trunk/base/
 
scm:svn:svn://subversion.company.com/project/trunk/base/
 
 

You can find the right connection url by going to a blank working folder and
doing this from command line:

mvn scm:checkout -DconnectionUrl="scm:svn:svn://sub..."

with the same thing as is in the  tag. When it checks out your
project, you have it right.

There used to be some info at http://mojo.codehaus.org/*changelog*-*maven*-*
plugin*/howto.html<http://mojo.codehaus.org/changelog-maven-plugin/howto.html>
but it seems to point back to
http://maven.apache.org/plugins/maven-changelog-plugin now and that doesn't
have anything there.

I think the 'changes' plugin is used to generate a page for the site showing
what has changed between version 1.1 and 1.2 for example. I'm not really
sure.

-- Lee Meador

On 4/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:
>
> As per requirement, I have to prepares reports about changes in files
> between current version and previous version of files so could any body
> suggest me the approach for achieving this goal.
>
> I got to know from maven website that there are two plugins neams as
> "changes" and "changelog" but when I click on those, I get page not found
> problem.
>
> Looking for the help.
>
> Thanks in advance.
>
> Vijay
>
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
-- Lee Meador
Sent from gmail. My real email address is [EMAIL PROTECTED]



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

RE: Help me about changes plugin

2006-04-18 Thread Vijay Shanker
Hi Lee,
 
Thanks a lot. It is great help to me, I will try to use changelog plugin as per 
your suggestion and let you know shortly. I think if changes plugin works as 
you explained then that is what we are looking for.
 
Thanks again.
 
Vijay
 
 
 
From: [EMAIL PROTECTED] on behalf of Lee Meador
Sent: Tue 4/18/2006 11:25 AM
To: Maven Users List
Subject: Re: Help me about changes plugin



Put this in your pom.xml to add a report showing what has changed in the
version control during the last 30 days. There are some config settings you
can add that change just what is shown in the report.




org.codehaus.mojo
changelog-maven-plugin




When you do a mvn site, it will generate the reports as html and put them
under the 'target' folder.

You also have to be sure and set the  section in your pom so it knows
how to talk to the version control:

 
 
scm:svn:svn://subversion.company.com/project/trunk/base/
 
scm:svn:svn://subversion.company.com/project/trunk/base/
 
 

You can find the right connection url by going to a blank working folder and
doing this from command line:

mvn scm:checkout -DconnectionUrl="scm:svn:svn://sub..."

with the same thing as is in the  tag. When it checks out your
project, you have it right.

There used to be some info at http://mojo.codehaus.org/*changelog*-*maven*-*
plugin*/howto.html<http://mojo.codehaus.org/changelog-maven-plugin/howto.html>
but it seems to point back to
http://maven.apache.org/plugins/maven-changelog-plugin now and that doesn't
have anything there.

I think the 'changes' plugin is used to generate a page for the site showing
what has changed between version 1.1 and 1.2 for example. I'm not really
sure.

-- Lee Meador

On 4/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:
>
> As per requirement, I have to prepares reports about changes in files
> between current version and previous version of files so could any body
> suggest me the approach for achieving this goal.
>
> I got to know from maven website that there are two plugins neams as
> "changes" and "changelog" but when I click on those, I get page not found
> problem.
>
> Looking for the help.
>
> Thanks in advance.
>
> Vijay
>
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
-- Lee Meador
Sent from gmail. My real email address is [EMAIL PROTECTED]



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

Re: Help me about changes plugin

2006-04-18 Thread Lee Meador
Put this in your pom.xml to add a report showing what has changed in the
version control during the last 30 days. There are some config settings you
can add that change just what is shown in the report.




org.codehaus.mojo
changelog-maven-plugin




When you do a mvn site, it will generate the reports as html and put them
under the 'target' folder.

You also have to be sure and set the  section in your pom so it knows
how to talk to the version control:

 
 
scm:svn:svn://subversion.company.com/project/trunk/base/
 
scm:svn:svn://subversion.company.com/project/trunk/base/
 
 

You can find the right connection url by going to a blank working folder and
doing this from command line:

mvn scm:checkout -DconnectionUrl="scm:svn:svn://sub..."

with the same thing as is in the  tag. When it checks out your
project, you have it right.

There used to be some info at http://mojo.codehaus.org/*changelog*-*maven*-*
plugin*/howto.html
but it seems to point back to
http://maven.apache.org/plugins/maven-changelog-plugin now and that doesn't
have anything there.

I think the 'changes' plugin is used to generate a page for the site showing
what has changed between version 1.1 and 1.2 for example. I'm not really
sure.

-- Lee Meador

On 4/18/06, Vijay Shanker <[EMAIL PROTECTED]> wrote:
>
> As per requirement, I have to prepares reports about changes in files
> between current version and previous version of files so could any body
> suggest me the approach for achieving this goal.
>
> I got to know from maven website that there are two plugins neams as
> "changes" and "changelog" but when I click on those, I get page not found
> problem.
>
> Looking for the help.
>
> Thanks in advance.
>
> Vijay
>
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
-- Lee Meador
Sent from gmail. My real email address is [EMAIL PROTECTED]


Re: Help me about changes plugin

2006-04-18 Thread ian . d . stewart
There are a number of dead links on maven.apache.org.  The plugin
documentation links are the most visible, primarily because those are the
ones that long term Maven users are most interested in (personal
opinion/observation here.  Any relation to objective fact is purely
coincidental).

Is this something that the Maven team is aware of, and what, if anything,
can we as users do to help us help ourselves (beyond opening issues in
JIRA)?


Thanks,
Ian

It's better to be hated for who you are
than loved for who you are not

Ian D. Stewart
Appl Dev Analyst-Advisory, DCS Automation
JPMorganChase Global Technology Infrastructure
Phone: (614) 244-2564
Pager: (888) 260-0078



   
  "Vijay Shanker"   
   
  <[EMAIL PROTECTED]To:   "Maven Users List" 
   
  e.com>   cc:  
   
   Subject:  Help me about changes 
plugin  
  04/18/2006 11:45  
   
  AM
   
  Please respond to 
   
  "Maven Users  
   
  List" 
   

   




As per requirement, I have to prepares reports about changes in files
between current version and previous version of files so could any body
suggest me the approach for achieving this goal.

I got to know from maven website that there are two plugins neams as
"changes" and "changelog" but when I click on those, I get page not found
problem.

Looking for the help.

Thanks in advance.

Vijay




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


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