Alexey Krasnoriadtsev wrote:
> Yes for my own scripting I won't use dot in the var names. But, maven
> uses dots extensibly, i.e. pom.foo.foo
> And here is the line in xdoc-plugin/site.jsl: 195 test="${!empty(pom.repository.url)}">
> that doesn't work, and it always adds a link in the navigation,
Ok, will test it by removing the elements and running site for one of my
projects.
Fixed.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
matt <[EMAIL PROTECTED]> wrote on 02/10/2003 09:31:21 AM:
> It's in plugin-resources/navigation.jelly.
>
> I haven'
"Steve Garcia" <[EMAIL PROTECTED]> wrote on 02/10/2003 07:33:08 AM:
> Yea you basically got it right. However I was under the impression that
> when you specify the "include" and "exclude" tags of the maven:reactor
tag
> it would 1) first find all project.xml files according to the fileset
and
Either put it in MAVEN_HOME/lib or add it as a dependency with a
root
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Matt Coarr <[EMAIL PROTECTED]> wrote on 02/10/2003 07:25:28 AM:
> Hi,
>
> I'm using ant fileset mappers inside of a maven plugin. Th
Applied to CVS HEAD.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
"Kumar, Vaidhyanatha K." <[EMAIL PROTECTED]> wrote on 02/10/2003
04:09:16 AM:
> Yup, the fix works. Once I wiped out the target dir, things started
working.
> Thanks Richard
> Vaidhy
>
"khote" <[EMAIL PROTECTED]> wrote on 02/10/2003 04:38:05 AM:
[snip]
> Is this just a legacy thing from maven early days, I mean the JAR plugin
was
> written long before the WAR plugin, nobody ever got around to
sar-plugin?
Nope, noone has written a SAR or RAR plugin.
--
dIon Gillard, Multitask Co
I've updated the docs to reflect this. Thanks.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
"W. Sean Hennessy" <[EMAIL PROTECTED]> wrote on 02/10/2003
02:31:56 AM:
> CAUTION:
> Changing default maven.build.dir value in your
${user.home}/build.properti
Done.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Didier Dubois <[EMAIL PROTECTED]> wrote on 02/10/2003 02:27:53 AM:
> And also http://displaytag.sourceforge.net/
>
> HTH,
> D
>
> Tim Pizey wrote:
>
> >Hi,
> >
> >I have been using Maven for a while
It's in plugin-resources/navigation.jelly.
I haven't checked the behaviour myself, though, so I can't warrant the rest.
[EMAIL PROTECTED] wrote:
That's not in my xdoc/plugin.jelly...
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Alexey Krasnoriadtsev <[E
That's not in my xdoc/plugin.jelly...
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Alexey Krasnoriadtsev <[EMAIL PROTECTED]> wrote on
02/10/2003 01:37:58 AM:
> Yes for my own scripting I won't use dot in the var names. But, maven
> uses dots extensibly
It's the plugin plugin.
See plugin:generate-docs.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Peter Neubauer <[EMAIL PROTECTED]> wrote on 01/10/2003 10:54:46
PM:
> Hi,
> I'm wondering wether there is a plugin that generates
> tag/goal/properties docu
When you added it to the dependency list, did you try including:
...
root
...
Matt
Matt Coarr wrote:
Hi,
I'm using ant fileset mappers inside of a maven plugin. This requires
that a regular expression library be available. (either jakarta
regexp or jakarta ORO)
When I was doing th
I found a reference to an as-yet-unpublished book that purports to
include a section on Maven:
"Professional Java Open Source Tools - Real world Ant, JUnit, CVS,
Cactus, Bugzilla, Maven, JMeter and XDoclet" by Damon Payne, Wrox Press
Originally to be published in April 2003, the last I heard it
Steve,
See my comments below.
Suppose I have a single maven project (let's call it
projectA) and it requires the Log4J jar file and some jar file
called "projectB-1.0.jar". All maven would do is try to download the
projectB artifact from the maven.repo.local, and if that failed it would to
go a
For what it's worth, I think these are all legitimate, good reasons.
Especially the point that experienced writers can communicate much better
than most other people who don't write (like me.) I understand that it can
be an enjoyable experience, and I look forward to seeing the book.
The only thi
Yea you basically got it right. However I was under the impression that
when you specify the "include" and "exclude" tags of the maven:reactor tag
it would 1) first find all project.xml files according to the fileset and
exclude the ones that match your exclude pattern and 2) work out which
projec
Hi,
I'm using ant fileset mappers inside of a maven plugin. This requires
that a regular expression library be available. (either jakarta regexp
or jakarta ORO)
When I was doing this in ant, this could just be placed in the ant lib
directory.
What is the best means of getting maven to pick
Hey:
Problem: When I use ANT's copy/move task to copy the generated jar,
Classloader cannot load that jar.
This is what I do:
Step A:
I use maven jar:install goal to generate the jar. I have a postGoal for
jar:install that copies this generated jar to the local repository using
ANT's move/copy co
If I understand correctly, you're suggesting that I create main project with
no dependencies, and for the case of project A, a 'buildA' goal in the main
project's maven.xml file. In that goal's reactor tag I would exclude
projects that A doesn't depend on. I did try this approach, but rejected it
Hi Brian - the way I used Maven reactor is similar to the way you have it.
I have a few sub projects and the main project is just a shell which
executes the sub projects. Based on the dependencies, the sub projects are
executed in the right order (that is so cool).
In your case I'm not sure if yo
I've just started using Maven and I'm having trouble with multiproject
builds using reactor. Suppose I don't have a main project with subprojects,
but rather a set of projects and dependencies between them, and I want to be
able to build a particular project, recursively building its dependencies
Alexey Krasnoriadtsev wrote:
Yes for my own scripting I won't use dot in the var names. But, maven
uses dots extensibly, i.e. pom.foo.foo
And here is the line in xdoc-plugin/site.jsl: 195
test="${!empty(pom.repository.url)}">
that doesn't work, and it always adds a link in the navigation, even
th
On Wednesday 01 October 2003 1:48 pm, Tim Pizey wrote:
> Hi,
>
> I have been using Maven for a while,
> it has been of great benefit to me.
>
> Please consider listing the following two sites:
> Melati (http://melati.org/)
Arrg, hadn't made the switch, have now.
> " A framework for creating datab
> This could be because the default destination for the xdoclet:hibernate
> goal is ${maven.build.dir}/xdoclet/hibernatedoclet, but the default
> input directory for the hibernate:schema-export goal is
> ${maven.build.dest}.
That seems to suggest that the hbm.xml files be in the resulting JAR, is
Yup, the fix works. Once I wiped out the target dir, things started working.
Thanks Richard
Vaidhy
-Original Message-
From: Richard Burgess [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 01, 2003 10:13 AM
To: Maven Users List
Subject: RE: jxr-plugin fails if '_' in packagename
This f
Thanks, that sounds great. Will the description tag be added to both,
and can I help to do the work on the plugin?
/peter
On Wed, 2003-10-01 at 17:39, Emmanuel Venisse wrote:
> Actually, taglibs and tags doesn't support a description. I open an
> issue for jelly for add this features. [Jelly-89]
>
On Wednesday 01 Oct 2003 17:27, Didier Dubois wrote:
> And also http://displaytag.sourceforge.net/
OK, i'll give you a few too ... if you're really interested :-)
http://www.ajsoft.net/Products/WebUtils
A web portal toolkit
http://www.ajsoft.net/Products/WebShop
A J2EE implementation of a
And also http://displaytag.sourceforge.net/
HTH,
D
Tim Pizey wrote:
Hi,
I have been using Maven for a while,
it has been of great benefit to me.
Please consider listing the following two sites:
Melati (http://melati.org/)
" A framework for creating database backed websites."
and
PanEris (ht
CAUTION:
Changing default maven.build.dir value in your ${user.home}/build.properties
might allow one some control of individual project directory layouts.
However this practice will interfere with
Ant -f build-bootstrap.xml
This is due to hard coded references to directory names.
Eg: Build-boots
Actually, taglibs and tags doesn't support a description. I open an
issue for jelly for add this features. [Jelly-89]
Emmanuel
-Message d'origine-
De: Peter Neubauer <[EMAIL PROTECTED]>
A: [EMAIL PROTECTED]
Date: 01/10/03
Objet: Re: Rep:Documentation on plugin.jelly?
This workd well for
Yes for my own scripting I won't use dot in the var names. But, maven
uses dots extensibly, i.e. pom.foo.foo
And here is the line in xdoc-plugin/site.jsl: 195
that doesn't work, and it always adds a link in the navigation, even
though the page doesn't exists.
Thank you.
-Original Message---
On Wed, 2003-10-01 at 04:46, Roland Berger wrote:
> It is only fair that contributors and commiters can get a pay back for the
> great work they do in their free time. Is it by writting a book or by
> providing some consulting work.
Right, I see writing the book as pleasurable experience. It will
This fix worked for me. The issue is listed as an unassigned bug:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-822
Did you clean out the previously generated docs?
Richard
On Wed, 2003-10-01 at 15:24, Kumar, Vaidhyanatha K. wrote:
> Matthias,
> Did that fix help you. I tried your s
Isn't there some jelly missing here ?
I recently wrote a taglib and realized there was no space to document
tags of a taglib, their attributes, and probably their common-properties.
I would have something like
description="Does something.">
Also, property elements aren't documentable.
Maven
Kumar, Vaidhyanatha K. wrote:
Matthias,
Did that fix help you. I tried your suggestion and I still have the summary and other
frames generated incorrectly.
Vaidhy
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 3:13 AM
To: [EMAIL PROT
Matthias,
Did that fix help you. I tried your suggestion and I still have the summary and other
frames generated incorrectly.
Vaidhy
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 3:13 AM
To: [EMAIL PROTECTED]
Subject: RE: jxr-plugin
This workd well for goals and properties, but what
about taglibs and tags? I'm looking for something like
the docs on the jelly tags.
I'm right now fiddling with the plugin plugin to
extend it to include tag scanning in the plugin.jelly
... is that a good way to do that?
/peter
Emmanuel Venisse
All you want is in plugin plugin.
http://maven.apache.org/reference/plugins/plugin/goals.html
-Message d'origine-
De: Peter Neubauer <[EMAIL PROTECTED]>
A: [EMAIL PROTECTED]
Date: 01/10/03
Objet: Documentation on plugin.jelly?
Hi,
I'm wondering wether there is a plugin that generates
tag/
Hi,
I'm wondering wether there is a plugin that generates
tag/goal/properties documentation even from the
plugin.jelly of a plugin? I have no classes thanks to
jelly, but would like to generate the documentation
anyway.
Do I have to manually write the xdocs for this?
/peter
Höstrusk och grå moln
Hi,
I have been using Maven for a while,
it has been of great benefit to me.
Please consider listing the following two sites:
Melati (http://melati.org/)
" A framework for creating database backed websites."
and
PanEris (http://paneris.net/)
"All the current software output of the PanEris col
On Wed, 2003-10-01 at 10:52, khote wrote:
> Now all I need to do is find out why my -schema.sql comes out empty.
This could be because the default destination for the xdoclet:hibernate
goal is ${maven.build.dir}/xdoclet/hibernatedoclet, but the default
input directory for the hibernate:schema-ex
> -Original Message-
> From: Leif Nelson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 01, 2003 12:28 AM
> To: [EMAIL PROTECTED]
> Subject: eclipse .classpath with source & javadoc attachments
>
> Hi all-
>
> Not sure if anyone has thought of this... But, here's what we've been
--- Richard Burgess <[EMAIL PROTECTED]> wrote:
> I've seen this error appear when trying to use
> hibernate configured to
> use a JBoss Datasource in a stand alone JVM.
>
> Try telling the hibernate plugin to use a direct
> connection to the
> database by specifying the hibernate driver class,
>
that gets me past the classnotfound problem, thanks.
I used mysql-ds.xml for the template, wrote my own. JBoss says it likes it,
no problems in server.log
I can connect to it with IntialContext using the java:/MyDS in my own
classes
Now all I need to do is find out why my -schema.sql comes out
I've seen this error appear when trying to use hibernate configured to
use a JBoss Datasource in a stand alone JVM.
Try telling the hibernate plugin to use a direct connection to the
database by specifying the hibernate driver class, url, username and
password properties. Put the following in you
--- khote <[EMAIL PROTECTED]> wrote:
> I have all the basic stuff working with maven,
> xdoclet, and hibernate.
> I'm using a mysql database, JBoss 3.2.1, and I have
> installed the latest
> hibernate just in case.
>
> However when I try to run the
> hibernate:schema-export goal I get
>
> Could
I have all the basic stuff working with maven, xdoclet, and hibernate.
I'm using a mysql database, JBoss 3.2.1, and I have installed the latest
hibernate just in case.
However when I try to run the hibernate:schema-export goal I get
Could not obtain initial context
javax.naming.NoInitialContextEx
Done.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
"Emmanuel Venisse" <[EMAIL PROTECTED]> wrote on 01/10/2003 06:26:48 PM:
> Genapp plugin has changed since beta9
>
> You must run maven genapp and respond to interactive prompt.
> I'm sorry but plugins
It is only fair that contributors and commiters can get a pay back for the
great work they do in their free time. Is it by writting a book or by
providing some consulting work.
When I use open source software I usually buy the book when it is written by
one of the contributors or commiters. And one
Genapp plugin has changed since beta9
You must run maven genapp and respond to interactive prompt.
I'm sorry but plugins site wasn't redeployed. I can't do it for the
moment. Perhaps another commiter?
Emmanuel
-Message d'origine-
De: "W. Sean Hennessy" <[EMAIL PROTECTED]>
A: "maven-users
It was already mentioned on Maven-User-List.
Jelly interprets dots.
Try using underscores in your variables names.
http://www.mail-archive.com/[EMAIL PROTECTED]/msg02729.html
Alexey Krasnoriadtsev wrote:
Jelly does not resolve complex variable names (with dots in the var
name) when executing method
51 matches
Mail list logo