Re: Dependencies and the local repository

2004-04-06 Thread Kevin Hagel
if you're using mail.jar you can dispense with the 1.3 completely, will in fact be ignored if the tag is used. the tag allows the use of un-versioned packages. You can use , ... I even put my JBoss .SAR file in my local repository, stored it in a sars subdirectory. I was able to specify

Re: AW: How to implement a nightly build system in maven

2004-04-05 Thread Kevin Hagel
http://gump.apache.org/ Have you looked at gump? CNI wrote: Hello, As a beginner as well I have tried to use Anthill OS, though it lacks support for calling Maven goals directly (in the Open Source version). Instead I have written a little build script that executes Maven in an Ant task. Has

Re: Whitespace in filepath's when using javadoc plugin

2004-04-01 Thread Kevin Hagel
ent (short filename generation is an optional feature of NTFS and AFAIK not at all possible on any *nix). -Original Message----- From: Kevin Hagel [mailto:[EMAIL PROTECTED] Sent: 01 April 2004 16:11 To: Maven Users List Subject: Re: Whitespace in filepath's when using javadoc plugin You m

Re: Whitespace in filepath's when using javadoc plugin

2004-04-01 Thread Kevin Hagel
one can readily have a space-containing filename with no short equivalent (short filename generation is an optional feature of NTFS and AFAIK not at all possible on any *nix). -Original Message----- From: Kevin Hagel [mailto:[EMAIL PROTECTED] Sent: 01 April 2004 16:11 To: Maven Users List Sub

Re: Whitespace in filepath's when using javadoc plugin

2004-04-01 Thread Kevin Hagel
You may have to walk through the directories doing a dir /x "C:\Documents and Settings" will look like: C:\DOCUME~1 I develop on a windows box now and the, I just avoid directories with spaces. It confuses the tokenizers. Bertil Karlsson wrote: Is there a way around the problem that the j

Re: maven javadoc [RC2] Problem

2004-03-29 Thread Kevin Hagel
0-rc2\project_name\src\xxx\\xx\\x x\\RemyImpl.java C:\Program Files\Apache Software Foundation\Maven-1.0-rc2\project_name\src\xxx\\xx\\x x\\RemyPk.java -Message d'origine- De : Kevin Hagel [mailto:[EMAIL PROTECTED] Envoyé : lun

Re: maven javadoc [RC2] Problem

2004-03-29 Thread Kevin Hagel
can you just use maven.javadoc.package=* Menetrieux Remy wrote: My package Tag contain com.x.project_name I don't understand why maven get my absolute path to my project.. -Message d'origine- De : Andy Jefferson [mailto:[EMAIL PROTECTED] Envoyé : lundi 29 mars 2004 15:57 À : Maven

Re: maven javadoc [RC2] Problem

2004-03-29 Thread Kevin Hagel
you might want to try reversing the '\' character. C:\Program to C:/Program Even though windoze likes the front-slash, your jvm is smart enough to resolve those. it could be something else but I've seen this problem in similar situations. Menetrieux Remy wrote: Hi, When I run maven wit

Re: Dependency - If version is not specified, should it consider '-' or not?

2004-03-29 Thread Kevin Hagel
oops, a typo yourstuff yoursetuff 1.2 Now assume you have yourstuff.jar, a non-versioned library. yourstuff yoursetuff yourstuff.jar Kevin Hagel wrote: Assume you have yourstuff-1.1.jar, a versioned library yourstuff yoursetuff 1.2 Now assume you have yourstuff.jar, a non-versioned

Re: Dependency - If version is not specified, should it consider '-' or not?

2004-03-29 Thread Kevin Hagel
Assume you have yourstuff-1.1.jar, a versioned library yourstuff yoursetuff 1.2 Now assume you have yourstuff.jar, a non-versioned library. yourstuff yoursetuff yourstuff.jar Maczka Michal wrote: -Original Message- From: Veerasamy, Thirumalai (Cognizant) [mailto:[EMAIL PROT

Re: What does the XDoclet plugin expects?

2004-03-15 Thread Kevin Hagel
maven can often be considered an Ant wrapper, I've found it much easier to embed "ant" script rather than "maven" script to deal with xdoclet. xdoclet's plugin methods for assigning values is awkward and impenetrable. Look in your repository for the expanded xdoclet plugins, look in the plugin.pr

Re: How to ignore xdoclets tags on javadoc

2004-03-11 Thread Kevin Hagel
being able to read @web.servlet.mapping as @web.servlet-mapping, which helps to get rid of the javadoc bitching about the xdoclet tags. I've tested it, it seems to work ... at least for xdoclet-1.2 Jörg Schaible wrote: Kevin Hagel wrote on Wednesday, March 10, 2004 8:25 AM: here&#x

Re: How to ignore xdoclets tags on javadoc

2004-03-10 Thread Kevin Hagel
hibernate.org/hib_docs/api/"/> http://www.springframework.org/docs/api/"/> Miguel Griffa wrote: Hi, I'm sorry I'm still quite newbie here, where should I pla

Re: How to ignore xdoclets tags on javadoc

2004-03-09 Thread Kevin Hagel
here's a section of my build file that javadocs: the problem is: while @web.servlet will be successfully ignored, @web.servlet-mapping will not, something about the hypen in "servlet-mapping". Javad

Re: Installing Maven %HOME%

2004-02-27 Thread Kevin Hagel
open a command window and just type set and you'll see the whole pile of environment variables. I advise against using any directories in maven that contain spaces, such as "Documents And Settings". While they're convenient for we humans, some jelly scripts tokenize on white space and things can

Re: Installing Maven %HOME%

2004-02-27 Thread Kevin Hagel
%HOME% is your windows user account home. If you want to share your repository, do not put it in any one person's home directory, I use C:\mavenrepository and everybody on the system has access. George Hester wrote: In this article just under the warning, http://maven.apache.org/start/install.h

Re: jakarta-taglibs

2004-02-27 Thread Kevin Hagel
lots of licensing issues to deal with there, some folks just don't want their jars uploaded to ibiblio -- even though you can download them for free from the source! Just add the needed directories to your $MAVEN_HOME_LOCAL, for example: mkdir $MAVEN_HOME_LOCAL/repository/jstl/jars and stick it

Re: hibernate/xdoclet output locations.

2004-02-27 Thread Kevin Hagel
go into your repository and look in your local repository, the $MAVEN_HOME_LOCAL/plugins/maven-xdoclet-plugin-1.2 Look at the plugin.properties, you can see all the defaults used, that you can override. The plugin.jelly is a monster, about 11,000 lines of code. But it is worth the look. Tim

Re: external jar files ...

2004-02-24 Thread Kevin Hagel
Oops, rather than $MAVEN_HOME use whatever directory contains your repository, $MAVEN_HOME_LOCAL Kevin Hagel wrote: In your local maven repository create a directory, call it example for this example. That's $MAVEN_HOME/repository/example create a subdirectory called jars, just like al

Re: external jar files ...

2004-02-24 Thread Kevin Hagel
In your local maven repository create a directory, call it example for this example. That's $MAVEN_HOME/repository/example create a subdirectory called jars, just like all the other directories and stash example.jar in it $MAVEN_HOME/repository/example/jars/example.jar In your project.xml: ...

Re: build time

2004-02-24 Thread Kevin Hagel
http://ant.apache.org/manual/CoreTasks/uptodate.html I use ant's uptodate to see if I need to rebuild anything in particular. When our project was in its early days there wasn't so much to build and it seemed like overkill, but after a while when things really bloated it made a big difference

Re: Using ANT build.xml in Maven?

2004-02-23 Thread Kevin Hagel
except you wrap a "" around a target perhaps ... your command line would work the same. You can pretty much stuff all taskdefs, typedefs, and all that right inside your project.xml, Maven is an Ant wrapper in that. etc. [EMAIL PROTECTED] wrote: Hi, my boss just wants me to use

Re: Using ANT build.xml in Maven?

2004-02-23 Thread Kevin Hagel
Do you want to run an external ant file from within your maven project.xml, is that it? What Brett said and: http://ant.apache.org/manual/CoreTasks/ant.html that's what I use. Some of the people around here "get" Ant, but not Maven, I have to do this to make their projects work sometimes.

Re: question about jboss SAR files

2004-02-18 Thread Kevin Hagel
John Casey wrote: Is there a plugin which will assemble JBoss .sar files (I assume these aren't unique to JBoss, but I'm not sure they're the same as Avalon SAR's). What I'm really after is the ability to bundle other jars within the SAR, like the war and ear plugins. It could also be a variation

Re: Jdom 0.7.jar with META-INF/info.xml displays a uncomplete deployment when put in the deploy directory

2004-01-09 Thread Kevin Hagel
oops, I meant touch server/conf/log4j.xml - Original Message - From: "Kevin Hagel" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Friday, January 09, 2004 2:28 AM Subject: Re: Jdom 0.7.jar with META-INF/info.xml displays a uncom

Re: Jdom 0.7.jar with META-INF/info.xml displays a uncomplete deployment when put in the deploy directory

2004-01-09 Thread Kevin Hagel
I always see this happening too, especially as the EAR gets larger, contains WARs etc. It starts to fill up your server.log with a bunch of junk. If you use JMX to deploy your EAR from a directory not under JBoss, the next time you restart JBoss it isn't deployed anymore! We tried having our maven

Re: XDoclet plugin strange behavior

2004-01-05 Thread Kevin Hagel
http://opensource.atlassian.com/projects/xdoclet/secure/ViewIssue.jspa?key=XDT-673 I filed this back in october, still unresolved. Are you building from source? The maven plugin source still uses the old style, which has NEVER worked since I first started building XDoclet about 6 months ago. I c

Re: FTP

2003-12-10 Thread Kevin Hagel
be sure to include commons-net in your dependencies. - Original Message - From: "Michael Dunn" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Wednesday, December 10, 2003 9:51 AM Subject: FTP > I have been trying to use Maven to do an FTP and it says the following

Re: location of generated source

2003-12-09 Thread Kevin Hagel
d be a good idea to put together a "Best Practices" guide for this > kind of thing? I'm sure there are several people using maven that have > these same questions. I think maven does a great job at handling it, but > with several different options, a short HOWTO might be bene

Re: location of generated source

2003-12-09 Thread Kevin Hagel
One other thing http://ant.apache.org/manual/CoreTasks/uptodate.html maybe you can do the uptodate test yourself to see if it's necessary to run xdoclet. - Original Message - From: "Kevin Hagel" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROT

Re: location of generated source

2003-12-09 Thread Kevin Hagel
refreshing of the classes becomes tedious. How large is your > project and what do you use xdoclet for (entity and session ejbs, taglibs)? > > Thanks again. > Ryan > > -Original Message- > From: Kevin Hagel [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 09, 2003 3:18 P

Re: location of generated source

2003-12-09 Thread Kevin Hagel
I always put XDoclet-generated files in target/xdoclet/hibernatedoclet, target/xdoclet/springdoclet, that kind of thing. Isn't it true that XDoclet won't bother re-creating your generated classes if the timestamps on the source and destination files match? I mean is there a force=false kind of set

Re: Leading slash gets removed from navigation.xml hrefs during site generation

2003-12-09 Thread Kevin Hagel
I'm using the root context for one thing, and the site project page uses a different context. I'm also putting it all in a WAR and dumping it into my JBoss deploy directory. To enable this, for example with image paths, and then do an ant replace:

Re: Comparison of large numbers?

2003-12-05 Thread Kevin Hagel
http://ant.apache.org/manual/CoreTasks/uptodate.html I use ant's updtodate for such things, have you tried it? - Original Message - From: "Chad Brandon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 05, 2003 7:27 AM Subject: Comparison of large numbers? > Hi, > > I