Re: No records in Change Log, File Activity and Developer Activity reports, anything wrong?

2003-10-03 Thread Andy Jefferson
On Saturday 04 Oct 2003 06:52, [EMAIL PROTECTED] wrote:
> Account is OK, SSH works well.
> Should maven.username be anonymous or my account name?

You need to do a cvs login (manually) first ... and *then* run these reports.

If that doesnt help, try posting your project.xml so people can understand a 
bit better the context of your question.

-- 
Andy


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



No records in Change Log, File Activity and Developer Activity reports, anything wrong?

2003-10-03 Thread g-cyclops
Account is OK, SSH works well.
Should maven.username be anonymous or my account name?



Regards
Joel Guo



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



RE: How to change width of nav column? (xdoc)

2003-10-03 Thread Joel Guo
We can use maven.xdoc.jsl parameter to specify another site.jsl. If
attribute like maven.xdoc.nav.width is created, there might be hundreds
of attributes like this. I prefer using different site.jsl for different
purpose.
http://cyclops-group.sourceforge.net is a site built by maven. It
contains a modified site.jsl and big different UI.

Regards

Joel


-Original Message-
From: Andy Jefferson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 04, 2003 12:13 AM
To: Maven Users List
Subject: Re: How to change width of nav column? (xdoc)

On Saturday 04 Oct 2003 01:14, Dolf Starreveld wrote:
> At 16:57 -0700 10/3/03, Alexey Krasnoriadtsev spoke thusly:
>
> I could, but the drawback is that on every update of the plugin I
> would have to do this again. In addition, it forces me to use the
> same width on every project.
>
> >You Can always hack the site.jsl, that is in the
> >maven-xdoc-plugin/plugin-resources

Better would be to update the xdoc plugin making that attribute a
parameter 
that the user can input ... so then people can specify it as a
parameter.

-- 
Andy


-
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]



Re: How to change width of nav column? (xdoc)

2003-10-03 Thread khote
If you look in the .css styles used in the xdoc, your navcolum takes place
inside a
   
  

  

you can provide your own stylesheet, keeping in
xdocs/style/yourstylesheet.css for example,
and override what leftcol means:  give it a different width, see if that
works.
Look in the docs directory that is generated by xdoc, look at the
stylesheets in the style subdirectory:
maven.css, tigris.css, and some others.  If xdoc finds a style subdirectory
it copies over the contents, invoking your stylesheet last in the include
list.  So your settings can override the stuff in maven.css


I use a person stylesheet in this manner, but only for other  kinds of things.
I don't know if (for example)
#leftcol {
  width: 250px;
}
will override the td width="20%" , but it's worth a try.


 - Original Message - 
From: "Andy Jefferson" <[EMAIL PROTECTED]>
To: "Maven Users List" <[EMAIL PROTECTED]>
Sent: Friday, October 03, 2003 10:12 PM
Subject: Re: How to change width of nav column? (xdoc)


> On Saturday 04 Oct 2003 01:14, Dolf Starreveld wrote:
> > At 16:57 -0700 10/3/03, Alexey Krasnoriadtsev spoke thusly:
> >
> > I could, but the drawback is that on every update of the plugin I
> > would have to do this again. In addition, it forces me to use the
> > same width on every project.
> >
> > >You Can always hack the site.jsl, that is in the
> > >maven-xdoc-plugin/plugin-resources
>
> Better would be to update the xdoc plugin making that attribute a
parameter
> that the user can input ... so then people can specify it as a parameter.
>
> -- 
> Andy
>
>
> -
> 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]



Re: How to change width of nav column? (xdoc)

2003-10-03 Thread Andy Jefferson
On Saturday 04 Oct 2003 01:14, Dolf Starreveld wrote:
> At 16:57 -0700 10/3/03, Alexey Krasnoriadtsev spoke thusly:
>
> I could, but the drawback is that on every update of the plugin I
> would have to do this again. In addition, it forces me to use the
> same width on every project.
>
> >You Can always hack the site.jsl, that is in the
> >maven-xdoc-plugin/plugin-resources

Better would be to update the xdoc plugin making that attribute a parameter 
that the user can input ... so then people can specify it as a parameter.

-- 
Andy


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



RE: How to change width of nav column? (xdoc)

2003-10-03 Thread Dolf Starreveld
At 16:57 -0700 10/3/03, Alexey Krasnoriadtsev spoke thusly:

I could, but the drawback is that on every update of the plugin I 
would have to do this again. In addition, it forces me to use the 
same width on every project.

You Can always hack the site.jsl, that is in the
maven-xdoc-plugin/plugin-resources
line 157 is what you would be interested in:

-Original Message-
From: Dolf Starreveld [mailto:[EMAIL PROTECTED]
Sent: Friday, October 03, 2003 4:41 PM
To: Maven Users List
Subject: How to change width of nav column? (xdoc)
I don't quite like the width of the nav column as generated by
default in the site docs.
I know about navigation.xml (in fact I use it), but don't know what I
can do there, or elsewhere, to modify it.
Things I have tried or thought about:
- Look for a maven.ui property that can do this. Not available it appears
- Look for a maven.ui property that allows me to define a background image
   (for which I would the use a spacer image). Not found
- Override maven.css. Copied it to xdocs/stylesheets and modified it to add
   a width property. Problem is that the @variable are not being expanded
this
   way. The plugin just copies these files, whereas the ones from the
   plugin resources directory are subject to token substitution.
I don't like the approach anyway because it forces me to copy the
whole maven.css, making me loose future updates
Ideas anybody?

-
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]


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


RE: How to change width of nav column? (xdoc)

2003-10-03 Thread Alexey Krasnoriadtsev
You Can always hack the site.jsl, that is in the
maven-xdoc-plugin/plugin-resources

line 157 is what you would be interested in:



-Original Message-
From: Dolf Starreveld [mailto:[EMAIL PROTECTED]
Sent: Friday, October 03, 2003 4:41 PM
To: Maven Users List
Subject: How to change width of nav column? (xdoc)


I don't quite like the width of the nav column as generated by 
default in the site docs.
I know about navigation.xml (in fact I use it), but don't know what I 
can do there, or elsewhere, to modify it.
Things I have tried or thought about:

- Look for a maven.ui property that can do this. Not available it appears
- Look for a maven.ui property that allows me to define a background image
   (for which I would the use a spacer image). Not found
- Override maven.css. Copied it to xdocs/stylesheets and modified it to add
   a width property. Problem is that the @variable are not being expanded
this
   way. The plugin just copies these files, whereas the ones from the
   plugin resources directory are subject to token substitution.
I don't like the approach anyway because it forces me to copy the
whole maven.css, making me loose future updates

Ideas anybody?

-
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]



xdoc bug?

2003-10-03 Thread Grant Johnson
I noticed that when I moved from beta 10 to RC 1, all the links generated 
in the index.html from the navigation.xml are null, like:

Goals

So I tested a few things:

1. Went back to beta 10, did a maven clean and a site:generate, and it 
generated proper links.

2. Built a new test project consisting of:

 Directory of C:\temp\maven-bug

10/01/2003  05:17 PM   205 project.properties
10/03/2003  04:14 PM 1,348 project.xml
10/03/2003  04:22 PM  xdocs
 Directory of C:\temp\maven-bug\xdocs

10/03/2003  04:22 PM   573 goals.xml
10/03/2003  04:21 PM   680 navigation.xml
Contents of navigation.xml is:




  Test
  

  

  

This project behaves the same way.  Works fine under beta 10 and generates 
null links under RC1.

Am I missing something?  Are there any new directives or properties that 
need to be defined?

Thanks

Grant Johnson
[EMAIL PROTECTED]
925-423-0406
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


How to change width of nav column? (xdoc)

2003-10-03 Thread Dolf Starreveld
I don't quite like the width of the nav column as generated by 
default in the site docs.
I know about navigation.xml (in fact I use it), but don't know what I 
can do there, or elsewhere, to modify it.
Things I have tried or thought about:

- Look for a maven.ui property that can do this. Not available it appears
- Look for a maven.ui property that allows me to define a background image
  (for which I would the use a spacer image). Not found
- Override maven.css. Copied it to xdocs/stylesheets and modified it to add
  a width property. Problem is that the @variable are not being expanded this
  way. The plugin just copies these files, whereas the ones from the
  plugin resources directory are subject to token substitution.
I don't like the approach anyway because it forces me to copy the
whole maven.css, making me loose future updates
Ideas anybody?

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


Multiproject questions

2003-10-03 Thread Dolf Starreveld
I'm relatively new to Maven and multiproject, and I have the 
following questions that I would appreciate help with:

I have a single "parent" project for the sole purpose of organization, it does
not actually produce any artefacts, nor does it have dependencies. It 
does have many sub directories, one for each project, with its own 
project.xml, maven.xml etc.
At the top level I would like to run commands such as:
maven build-all
maven install-all
maven site-all
etc.
I realize I need to have appropriate goal definitions in the top 
level maven.xml.

- For the top level site-all goal I have the following, which works fine:



- I would like build-all I would like to use the multiproject:goal approach
  with -Dgoal=goal1,goal2. I can not find a way, however, to create the
  property definition needed within the  definition. Do I need to use
  jelly script or ant task to do this?
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Input from Maven Users

2003-10-03 Thread Timothy Fisher
Pat,
 
Based on your experience with Maven:
 
 - would you recommend its use to others?
 
 - Under what circumstances would you recommend its use?
 
 - In what circumstances would you recommending avoiding Maven?
 
Tim

Bateman Pat UK MYT <[EMAIL PROTECTED]> wrote:
The multiproject report for divergent dependencies has been a life saver
in a 10+ project environment. 

The next step is getting POM multiple inheritance.



-Original Message-
From: Robles, Rogelio [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 20:22
To: 'Maven Users List'
Subject: RE: Input from Maven Users




> -Original Message-
> From: Siegfried Goeschl [mailto:[EMAIL PROTECTED]
... 
> +) Maintaining the JAR dependencies and versions across more than 10
> subprojects is a pain in the ass. Nothing wrong with MAVEN
> here but I'm still 
> thinking of a maven plugin doing the stuff from the command 
> line such us 
> looking for conflicting versions of a JAR and replacing the 
> version number of 
> a JAR across multiple projects
> 
...

I think this is the next step for effective POM mgmt in a mavenized
environment with dozens of projects:

* merges POMs generating the minimum common denominator POM to be used
as the parent POM for reactor based projects, I have done this manually
and it's slooow

* diffs between POMs, something like: diff -u pomx pomy > pom.diff (in
pom
format)

Rogelio

-
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]



-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Multiproject dependency convergence question

2003-10-03 Thread Dolf Starreveld
Hi,

I have a parent project with multiple sub projects. The parent 
projec.xml contains maven-multiproject-plugin in its reports section 
so I can generate the dependency convergence report.
Because my sub projects inherit this project.xml the reports section 
gets inherited and all sub project's site documentation attempt to 
generate this report.
I only want it for the aggregate. Can anyone suggest how to achieve this?

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


Re: regarding id/artifactId/groupId in dependency

2003-10-03 Thread Warner Onstine
When I ran into this I had a question/observation. It might be nice if 
Maven automatically understood  was  when it was 
missing.

Don't know if this would break anything, just a thought.

-warner

On Friday, October 3, 2003, at 04:24 AM, Jason van Zyl wrote:

On Fri, 2003-10-03 at 07:04, Christian Andersson wrote:
Hi there, I hav a small question..

anyway, just like to know, so that I know what to do :-)

  foo
  bar
  1.0

Is the way to declare dependencies.


/Christian Andersson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
jvz.
Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org
In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  -- Jacques Ellul, The Technological Society

-
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]


Re: regarding id/artifactId/groupId in dependency

2003-10-03 Thread Jason van Zyl
On Fri, 2003-10-03 at 07:04, Christian Andersson wrote:
> Hi there, I hav a small question..
> 
> anyway, just like to know, so that I know what to do :-)


  foo
  bar
  1.0


Is the way to declare dependencies.


> /Christian Andersson
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


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



multiproject cuts path information

2003-10-03 Thread Dominik Dahlem
Hi,

I'm playing with the dotuml plugin. With the changes I submitted it
works fine when running "maven site" on a particular project. If I run
the multiproject:site goal the dotuml plugin bellies up. The output
below states a wrong DirSet. The includes list contains a path which is
cut at the beginning. It should be "ie.tcd.persl..." but is "ersl...". I
assume this is the reason why my build fails.
Are there similar issues with the multiproject plugin and if so is there
a fix available?

Thx,
Dominik


dotuml:generate:
[record] [DEBUG] setting a recorder for name
/home/dahlemd/projects/mainline/container/main/../core/target/docs/dotuml/report.txt
[javadoc] [DEBUG] scanning
/home/dahlemd/projects/mainline/container/core/src/java for packages.
[javadoc] [DEBUG] DirSet: Setup scanner in dir
/home/dahlemd/projects/mainline/container/core/src/java with patternSet{
includes: [ersl/container/core/internals/defaults] excludes: [] }
[javadoc] [VERBOSE]
/home/dahlemd/projects/mainline/container/core/src/java doesn't contain
any packages, dropping it.
 



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



Re: Input from Maven Users

2003-10-03 Thread Timothy Fisher
Yes, I am still interested.   I'm interested in how people are making use of it in 
their daily work, and whether your biased in favor of Maven or not, I don't think is a 
factor.
 
The article will be a positive one about Maven.
 
Thanks,
Tim

[EMAIL PROTECTED] wrote:
Are you interested in obviously biased answers?

As a developer of Maven, I'm also a user.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/


Timothy Fisher wrote on 03/10/2003 03:06:47 AM:

> Hello,
> 
> I'm in the process of writing an article about Maven that will be 
> published. I'd like to hear from users who have been successfully 
> using Maven, particularly in enterprise settings. Although, I am 
> open to hearing from open-source users as well.
> 
> What I'm looking for is comments about how you use Maven. What 
> features do you use? Maven can do quite a bit for your project, 
> what do you have it do for your project?
> 
> Also, if you had been using Ant, I'm interested in any comments you 
> have concerning your transition from Ant to Maven. Was it an easy 
> process? How has Maven benefited you over your use of Ant?
> 
> Please email me directly at [EMAIL PROTECTED]
> 
> Thanks,
> Timothy Fisher
> 
> 
> 
> -
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search

-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Running ant:rmic inside a goal failes

2003-10-03 Thread Teemu Hiltunen
Greetings!

Maven: 1.0-rc1
Java2: 1.4.2_01
Host: Redhat Linux 7.2

I'm trying to create a simple rmic goal for generating stub classes for rmi
(remote EJB)purposes. My maven.xml looks like this (for now):


 
  
  
  
   

   
   
  
 


Just for testing this goal I created a simple Remote interface called
TestRemote (as included above in ant:rmic task):

package test.mavenrmic;

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface TestRemote extends Remote {
public void doStuff() throws RemoteException;
}


If I run this same goal as an Ant task (ofcourse without the ant: prefixes)
everything works just fine and no errors are produced.

But when I run the goal under Maven I get following:
[rmic] [loaded target/classes/test/mavenrmic/TestRemote.class in 1 ms]
java.lang.NullPointerException
at sun.rmi.rmic.iiop.CompoundType.loadClass(CompoundType.java:328)
at sun.rmi.rmic.iiop.Type.initClass(Type.java:961)
at sun.rmi.rmic.iiop.Type.setRepositoryID(Type.java:978)
at sun.rmi.rmic.iiop.CompoundType.initialize(CompoundType.java:774)
at
sun.rmi.rmic.iiop.SpecialInterfaceType.initialize(SpecialInterfaceType.java:
216)
at
sun.rmi.rmic.iiop.SpecialInterfaceType.forSpecial(SpecialInterfaceType.java:
86)
at
sun.rmi.rmic.iiop.CompoundType.addRemoteInterfaces(CompoundType.java:1412)
at
sun.rmi.rmic.iiop.RemoteType.isConformingRemoteInterface(RemoteType.java:201
)
at sun.rmi.rmic.iiop.RemoteType.initialize(RemoteType.java:162)
at sun.rmi.rmic.iiop.RemoteType.forRemote(RemoteType.java:81)
at
sun.rmi.rmic.iiop.StubGenerator.getTopType(StubGenerator.java:118)
at sun.rmi.rmic.iiop.Generator.generate(Generator.java:259)
at sun.rmi.rmic.Main.doCompile(Main.java:526)
at sun.rmi.rmic.Main.compile(Main.java:130)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at
org.apache.tools.ant.taskdefs.rmic.SunRmic.execute(SunRmic.java:96)
at org.apache.tools.ant.taskdefs.Rmic.execute(Rmic.java:520)
at org.apache.tools.ant.Task.perform(Task.java:341)
at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:232)
...

I forked the Ant distribution that Maven uses in $MAVEN_HOME/lib which is
ant-1.5.3-1.jar in Maven rc1. I added printing the arguments Ant is trying
to give rmic in org.apache.tools.ant.taskdefs.rmic.SunRmic.execute(..) and
it prints them like this before throwing the exception discribed above:

arg[0]=-d
arg[1]=/home/test/projects/java/maven-rmic/target/classes
arg[2]=-classpath
arg[3]=/home/test/projects/java/maven-rmic/target/classes:/usr/java/maven-1.
0-rc1/lib/forehead-1.0-beta-5.jar
arg[4]=-keepgenerated
arg[5]=-iiop
arg[6]=-verbose
arg[7]=-g
arg[8]=-always
arg[9]=test.mavenrmic.TestRemote

If I run rmic from command line with these parameters everything goes fine -
just as when running the goal as Ant task. But in Maven I cannot get it to
work.
I even created a simple class simulating the Ant's SunRmic class that gets
parameters from command line and calls rmic through reflection. It works.
But Maven does not. I'm lost here.

Any help on this would be very much appreciated!


Sincerely,
Teemu Hiltunen


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



regarding id/artifactId/groupId in dependency

2003-10-03 Thread Christian Andersson
Hi there, I hav a small question..

in beta10 I could write a dependencytag like this

  test1-test2
  test1
  1.0

after a while I discovered thet I could also write the dependencytag 
like this...

  test1+test2
  1.0


to produce the same effect...

however, in RC1 the  tag has been deprecated (it still works however 
which is good) so I started to change my dependencytag to use artifactId 
instead.


  test1+test2
  1.0

with this sort of dependency I get an nullpointer exception.
adding the groupId back makes it all work...

  test1-test2
  test1
  1.0

is the nullpointer exception a bug? is it intended so that we have to 
use groupId

even if it made things harder to read, I thought it was nice to be able 
to use the + sign to tell maven that text before the + sign was the 
groupid, since it made much less editing...

anyway, just like to know, so that I know what to do :-)

/Christian Andersson

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


dotuml plugin

2003-10-03 Thread Dominik Dahlem
Hi all,

I had a look at the dotuml plugin and I really like it. Since, I
couldn't find anything else to create UML diagrams on the fly I find
this one very useful. 
I've changed a few things to fit my purposes:
(1) convert images with GraphViz (does only work with windows, if cygwin
is installed. I just tested it with Linux though). GraphViz has to be
installed separately. (http://www.graphviz.org/)
(2) created an overview page for the reports section. This page is not
very nice designed. However it lists the packages whith links to the uml
diagrams.
(3) made report.xml optional.
(4) got rid of package flexibility, because it was easier to generate
the overview page. Right now, it is only possible to generate uml class
diagrams for all available packages.

If someone is interested, I will attach it to
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-829.

Cheers,
Dominik


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



RE: Input from Maven Users

2003-10-03 Thread Bateman Pat UK MYT
The multiproject report for divergent dependencies has been a life saver
in a 10+ project environment. 

The next step is getting POM multiple inheritance.



-Original Message-
From: Robles, Rogelio [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 20:22
To: 'Maven Users List'
Subject: RE: Input from Maven Users




> -Original Message-
> From: Siegfried Goeschl [mailto:[EMAIL PROTECTED]
... 
> +) Maintaining the JAR dependencies and versions across more than 10
> subprojects is a pain in the ass. Nothing wrong with MAVEN
> here but I'm still 
> thinking of a maven plugin doing the stuff from the command 
> line such us 
> looking for conflicting versions of a JAR and replacing the 
> version number of 
> a JAR across multiple projects
> 
...

I think this is the next step for effective POM mgmt in a mavenized
environment with dozens of projects:

* merges POMs generating the minimum common denominator POM to be used
as the parent POM for reactor based projects, I have done this manually
and it's slooow

* diffs between POMs, something like: diff -u pomx pomy > pom.diff (in
pom
format)

Rogelio

-
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]



Re: maven, xdoclet, hibernate

2003-10-03 Thread Alwyn Schoeman
Good point, sometimes I tend to look at a plugin in isolation which is a bad
habit.

On Fri, Oct 03, 2003 at 08:25:23AM +0800, [EMAIL PROTECTED] wrote:
> 
> Wouldn't the above be worthwhile including in a sar/rar plugin?
> 
> Call jar:jar to build the jar, rename it, and then deploy/install etc?
> 
> --
> dIon Gillard, Multitask Consulting
> Blog:  http://blogs.codehaus.org/people/dion/
> 



-- 
Alwyn Schoeman
SMART Money Inc.

If you're a SMARTY and you're using the better DNS connections, you
can access my homepage at http://nevyn.smarties.com.ph/Members/alwyn.
The other unlucky ones: http://10.126.68.24/myplone

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



junitreport and xalan

2003-10-03 Thread Jamie McCrindle
hi,

i'm trying to use ant:junitreport to generate test reports instead of
maven-junit-report, because it displays the more information about the test
failures. i'm using this in my maven.xml:

  






  

but it fails because junitreport claims that Xalan 1 or 2 isn't on the
classpath. I've tried putting it into %MAVEN_HOME%\lib and \lib\endorsed but
that didn't work. I've tried putting it in as a project dependency and that
didn't work either. I won't be able to convince everyone in our team to put
Xalan on their classpath. Does anyone have any other suggestions?

attached would be my maven log except that our overenthusiastic virus
scanner thinks that it's a vbscript virus *sigh*.

regards,
jamie.




This e-mail message (including any attachment) is intended only for the personal 
use of the recipient(s) named above. This message is confidential and may be 
legally privileged.  If you are not an intended recipient, you may not review, copy or 
distribute this message. If you have received this communication in error, please 
notify 
us immediately by e-mail and delete the original message.

Any views or opinions expressed in this message are those of the author only. 
Furthermore, this message (including any attachment) does not create any legally 
binding rights or obligations whatsoever, which may only be created by the exchange 
of hard copy documents signed by a duly authorised representative of Hutchison 
3G UK Limited.



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