Insert / include contents of files as source in xdoc

2003-10-04 Thread Wijngaarde [Us Media]
Hi, I would like to insert the contents of some files in the xdoc documentation. the files I mean are in located somewhere in the source tree. Wat I would like to do is something like: ?xml version=1.0? document properties titleTomcat Configuration/title /properties body

RE: junitreport and xalan

2003-10-04 Thread Jamie McCrindle
seems that setting the system property doesn't work either: goal name=testreport ${systemScope.setProperty('javax.xml.transform.TransformerFactory','org.apac he.xalan.processor.TransformerFactoryImpl')} ant:property name=report.dir

Re: Powered by additions

2003-10-04 Thread Tim Pizey
On Thursday 02 October 2003 12:16 am, [EMAIL PROTECTED] wrote: Done. Thankyou Tim Pizey - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

sourceModifications

2003-10-04 Thread khote
I'm looking for some examples on how to use the sourceModifications element in the project descriptor. It seems that it is replacing sourceDirectory, rather than adding to it. What am I doing wrong? build sourceDirectorysrc/java/sourceDirectory sourceModifications

Re: sourceModifications

2003-10-04 Thread khote
ERROR org.apache.commons.jelly.tags.ant.AntTag - The javac task doesn't support the nested available element. A bug in the java-plugin, I filed http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-891 has anybody else encountered this, and more specifically: fixed it? - Original

properties in repository

2003-10-04 Thread Dominik Dahlem
Hi all, has it ever been discussed to include a section in the repository for properties? I find this idea quite nice. It would be possible to have a dependency (or a dedicated resources section for this purpose) to properties like log4j.properties/checkstyle.xml or even project wide common

StatCVS

2003-10-04 Thread Askren, Jay
I upgraded my version of maven to release candidate 1 and StatCVS stopped working. When I run maven, I get the following. Any ideas why it isn't working. Jay C:\Eclipse\workspace\ERAWebmaven site:generate __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects

Re: StatCVS

2003-10-04 Thread Klemen Zagar
Askren, Jay wrote: I upgraded my version of maven to release candidate 1 and StatCVS stopped working. When I run maven, I get the following. Any ideas why it isn't working. I was getting the same error when I did not specify the project/repository/url element in project.xml. This element should

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

2003-10-04 Thread Dolf Starreveld
In a mail from 22:24 -0700 10/3/03 khote wrote: After this suggestion and Joel's about doing my own site.jsl, I decided to inspect the existing site.jsl. I found out that what is described below can be accomplished by creating a style override in style/project.css. Just adding: #navcolumn {

Re: regarding id/artifactId/groupId in dependency

2003-10-04 Thread Paul Libbrecht
Jason van Zyl wrote: dependency groupIdfoo/groupId artifactIdbar/artifactId version1.0/version /dependency Is the way to declare dependencies. Cool. Do I interpret correctly that: dependency idblop/id version13.123231/version /dependency Is a kind of shortcut for the

Re: Input from Maven Users

2003-10-04 Thread Paul Libbrecht
I am now converted to Maven and I have partially converted our largest codebase to maven (still as a single project), it is still mostly based on ant. (the project is named ActiveMath, http://www.activemath.org/). The funny thing that happened is that people were afraid that I remove the ant

Bit more project-data... where should it go ?

2003-10-04 Thread Paul Libbrecht
Hi, I am producing applets with a little more XML-encoded data. This data is parsed in my maven.xml and, currently, the data is also in the maven.xml... what should be the best place to put such an XML ? I don't like too much putting it in the project.xml as long as the schema would complain

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

2003-10-04 Thread g-cyclops
It works. Thank you Andy :-) Regards Joel Guo -Original Message- From: Andy Jefferson [mailto:[EMAIL PROTECTED] Sent: Saturday, October 04, 2003 12:59 AM To: Maven Users List Subject: Re: No records in Change Log, File Activity and Developer Activity reports, anything wrong? On

Re: regarding id/artifactId/groupId in dependency

2003-10-04 Thread John Casey
Actually, the id/id syntax is deprecated. It was the old way of doing things, and ultimately didn't provide the grouping mechanisms desired by some of the more popular framework projects (read Jelly, etc.). I think it will still work, but I don't know for how long, since I've heard rumblings

Source code analyzer for unused method detection?

2003-10-04 Thread Tim Anderson
Hi, does anyone know of a code analyzer which can detect unused methods? The PMD plugin only reports on unused private methods - I'm looking for one which can also do public or protected methods. Thanks, Tim - To