Thanks Luke - that makes sense.
> -Original Message-
> From: ext Luke Taylor [mailto:[EMAIL PROTECTED]
> Sent: 02 July, 2003 03:05
> To: Maven Users List
> Subject: Re: "Unsatisfied dependencies" for reactor
> dependencies in Beta
> 9
>
>
> [EMAIL PROTECTED] wrote:
>
> >>>This works fo
Is there a sample of how to specify a reference to the various Struts .tld
files in the project.xml file (to include in the resulting .war)?
Thank you.
At 12:57 03/07/02 +1000, you wrote:
Struts 1.1 jar and the tlds are available.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.c
Struts 1.1 jar and the tlds are available.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Work: http://www.multitask.com.au
Maven doesn't need that tag to execute other stuff.
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Work: http://www.multitask.com.au
"Dave Ford" <[EMAIL PROTECTED]> wrote on 01/07/2003 06:00:24 AM:
> > This line is a give away:
> > Caused by: java.la
You could trim the strings after you get them, e.g. ${directory.trim()}
--
dIon Gillard, Multitask Consulting
Blog: http://blogs.codehaus.org/people/dion/
Work: http://www.multitask.com.au
[EMAIL PROTECTED] wrote on 02/07/2003 01:46:14 AM:
> Thank you, its work fine
>
> But I must omi
[EMAIL PROTECTED] wrote:
This works for beta 8 but not beta 9. What ya reckon?
It looks like the dependency problem is between your "toplevel" project
code and one of the subprojects ("base"). Since the reactor works out
dependencies between the subprojects it's being run on I don't think it
While this may sound like a good idea, consider that the repository is
currently 325M and contains a lot of stuff that you will never use.
It would only be of real use if you were going offline for a long period
of time and might need a whole lot of odd versions.
Moretti, Luciano (MED) wrote:
On Tuesday 01 July 2003 3:19 pm, Martin Skopp wrote:
> On Tue, 2003-07-01 at 18:10, Tim Pizey wrote:
> > > does the console say
> > >
> > > Linking with API information from ...
> >
> > Yes, then it says:
> > /usr/local/packages/dist/test/src/org/paneris/cbitlog/model/CategoryTable
> >.java:29: war
David-
I don't know of it, and can't find it in my list of goals, but I am a
Newbie...
If you're under linux/unix I'd probably use wget to handle that. wget
is really well designed to get recursive online filesystems and copy
them to the local filesystem.
after a little experimenting on our loca
I was under the impression that there was a generic call that could be made that
basically downloads all of the available jars and places them in the repository
strucuture.
-Original Message-
From: Moretti, Luciano (MED) [mailto:[EMAIL PROTECTED]
Sent: Tue 7/1/2
Dave-
Maven will automatically generate the repository on the 1st run. There
is no specific step needed to build a local repository- it will fetch
the needed jars off the web when they are called for.
Just create your project.properties file, make sure that you have the
proxy configuration stuff
I just downloaded and installed maven 1.0 b9.
What is the syntax I need to use to begin the process to have maven generate all of
the repository jar files?
Sorry for posting too soon.
After digging a little more, I discovered references to the old Ant version in:
MAVEN_HOME/bin/classworlds.conf
MAVEN_HOME/bin/forehead.conf
Updating the references to ant-1.5.3.jar and ant-optional-1.5.3.jar fixed it.
Thanks again.
--
Is it possible to use ant-1.5.3 with maven-1.0-beta9?
I removed:
MAVEN_HOME/lib/ant-1.5.1.jar
MAVEN_HOME/lib/ant-optional-1.5.1.jar
and replaced it with version 1.5.3 files.
However, when I try to run Maven, I'm getting the below exception:
java.net.MalformedURLException: unknow
No, for some reason they chose to separate the source & test
directories.
File structure-
util
|-test
| |-com
|
|
|-src
|-com
...
So I have
src/
&
test/
in my project.xml file.
Thanks,
Luciano Moretti
-Original Message-
From: Jason van Zyl [mailto:[EMAIL PROTE
On Tue, 2003-07-01 at 10:25, [EMAIL PROTECTED] wrote:
> Hi
>
> I define a property :
> my.list.directories=${dir.one}, ${dir.two}
>
> And I try to iterate in this list so I do :
>
>
>
>
> But I do only one iteration and the var equals : "${dir.one}, ${dir.two}"
> with the values of ${dir
On Tue, 2003-07-01 at 10:22, Moretti, Luciano (MED) wrote:
> Ok, if I'm understanding correctly the following will copy all files
> with the extension .properties from the to
> $(basedir)/target/test-classes/
>
>
>
>
>
> **/*Test.java
>
>
>
>
>
>
>
Thank you, its work fine
But I must omit the space : my.list.directories=${dir.one},${dir.two}
I will try util:replace to do this.
Now I have something that transform a directory structure in an other with
a properties config.
Nicolas,
>Hi Nicolas,
>
>I'm not a perfect jelly hacker but try thi
Jason van Zyl wrote:
Jason van Zyl wrote:
Jason van Zyl wrote:
import org.apache.maven.MavenUtils;
File f = new File( "project.xml" );
Project p = MavenUtils.getProject( f );
It works perfectly fine inside Maven. You also have to define what you
mean "inside Maven". Clarity is your only hope of g
On Tue, 2003-07-01 at 18:10, Tim Pizey wrote:
> > does the console say
> >
> > Linking with API information from ...
> Yes, then it says:
> /usr/local/packages/dist/test/src/org/paneris/cbitlog/model/CategoryTable.java:29:
> warning - Tag @see: reference not found: org.melati.poem.prepro.TableDef
Martin,
Thanks a lot for your reply.
On Tuesday 01 July 2003 8:16 am, Martin Skopp wrote:
> On Mon, 2003-06-30 at 20:48, Tim Pizey wrote:
> > I cannot persuade my cvs snapshot version of Maven
> > (1.0-BETA-10-SNAPSHOT) to pass a links argument to javadoc.
> >
> > I have
> > maven.javadoc.sourc
Hi Nicolas,
I'm not a perfect jelly hacker but try this.
${my.list.directories}
...
Hopt this helps!
Toby
>
> Hi
>
> I define a property :
> my.list.directories=${dir.one}, ${dir.two}
>
> And I try to iterate in this list so I do :
>
>
>
>
> But I do only one it
Hi
I define a property :
my.list.directories=${dir.one}, ${dir.two}
And I try to iterate in this list so I do :
But I do only one iteration and the var equals : "${dir.one}, ${dir.two}"
with the values of ${dir.one} and ${dir.two}. The list is not separate.
Does list of properties are e
Ok, if I'm understanding correctly the following will copy all files
with the extension .properties from the to
$(basedir)/target/test-classes/
**/*Test.java
$(basedir)/test/com/ge/medit/util/resources
**/*.properties
On Tue, 2003-07-01 at 09:12, Paul Libbrecht wrote:
> Paul Libbrecht wrote:
> > Jason van Zyl wrote:
> >> import org.apache.maven.MavenUtils;
> >>
> >> File f = new File( "project.xml" );
> >> Project p = MavenUtils.getProject( f );
> >>
> >
> >
> > Well... doesn't sound perfect...
> >
> > -> run
On Tue, 2003-07-01 at 09:15, Moretti, Luciano (MED) wrote:
> Thanks for the reply- but I have a few questions-
>
> 1) $(basedir) is the variable name for the directory from which maven
> was invoked right?
No, it is the base directory for the project currently being worked on.
> 2) can I point t
On Tue, 2003-07-01 at 08:40, Paul Libbrecht wrote:
> Jason van Zyl wrote:
> >>To make that thing short, allow me a quick question: how can I
> >>instantiate a maven Project object ? Oh, and should I switch to the dev
> >>list for that ? (just fearing).
> >
> >
> > import org.apache.maven.MavenU
How do I make the (optional) ant task 'p4sync' work under Maven 1.0 beta 9?
This task requires the oro library. For ant I have to drop this jar-file
into the lib directory. What is the corresponding place under maven ?
thanks in advance,
Marc
Hi Jason,
> I will add as a prerequisite for 1.0-final a method to
> retrieve plugins
> (or any artifact, easily from the repo) so we don't have to
> include them
> in Maven.
This would be cool as over time you and the community have to maintain to
much projects which leads
to similar problems
> > This works for beta 8 but not beta 9. What ya reckon?
>
> This is when we switched the default dependency resolver from the
> commons-graph one to the werkz one so I'll take a peek later
> when I get
> a moment. I have to run off right now.
No problem. I changed the small example I posted
On Tue, 2003-07-01 at 07:44, Rademacher Tobias wrote:
> > I just wanted to use yDoc with maven. Is there any plugin available..?
> > or any guidence to the plugin?
>
> We have written a plugin. Any interest to contribute to to maven?
I will add as a prerequisite for 1.0-final a method to retrieve
On Tue, 2003-07-01 at 04:54, [EMAIL PROTECTED] wrote:
> Jason,
>
> I extracted my problem out into the smallest example possible. Its attached. If
> you extract it into a dir and invoke maven, it should first jar:install base, the
> jar:install toplevel.
>
> This works for beta 8 but not beta
On Tue, 2003-07-01 at 04:07, [EMAIL PROTECTED] wrote:
> Don't get it Jason. Are you saying all dependencies should be specified as follows
> in beta 9:
>
>
> junit
> junit
> 3.8.1
>
>
> I tried this for one of the reactor-generated-dependencies but it didn't work.
>
> Is there a
> This line is a give away:
> Caused by: java.lang.IllegalArgumentException:
> repository connection string contains less than six tokens
Why does the documentation for the connection tag say Optional?
Dave Ford
Smart Soft - The Developer Training Company
http://www.smart-soft.com
- Origina
Paul Libbrecht wrote:
Jason van Zyl wrote:
import org.apache.maven.MavenUtils;
File f = new File( "project.xml" );
Project p = MavenUtils.getProject( f );
Well... doesn't sound perfect...
-> runing this as a test gives me an out-of-memory error, it looks like
it's not a good idea to invoke Mav
Thanks for the reply- but I have a few questions-
1) $(basedir) is the variable name for the directory from which maven
was invoked right?
2) can I point to the originals, or should I still copy them over into
the target/classes hierarchy.
3) I still don't know how to get the classpath that Maven
On Mardi, juil 1, 2003, at 14:49 Europe/Paris, Rademacher Tobias wrote:
-> what interests me is to have the dependencies... and what I get in
maven.xml,
says true whereas the project has an amount of dependencies.
Am I following the wrong route ?
Didn't ${pom.artifacts} work
> -> what interests me is to have the dependencies... and what I get in
> maven.xml,
>
>says true whereas the project has an amount of dependencies.
>
> Am I following the wrong route ?
Didn't ${pom.artifacts} work
Bye
Toby
--
Jason van Zyl wrote:
To make that thing short, allow me a quick question: how can I
instantiate a maven Project object ? Oh, and should I switch to the dev
list for that ? (just fearing).
import org.apache.maven.MavenUtils;
File f = new File( "project.xml" );
Project p = MavenUtils.getProject(
Please have a look at
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-535
It works on WindowsNT and on Solaris (so I guess on linux-to).
We used JDK 1.4 (!!) for test as it supports java.awt.headless mode. For JDK
1.3/1.2 you need a running X-Server.
Toby
> -Ursprüngliche Nachric
Hi
I have a project with 2 subprojets.
This 2 subprojects specialize some extra functionalities of the base
webapp
In the project I have some jsp page, configuration files and classes that
I want to include in my subprojects war.
Is maven war goal allow to use the base project war process for
But, will it work with Linux also.. I have tried the with the
build-sample.xml file downloaded from yDoc site in Linux. It says "Missing
Resource: class2svg.jar not found"
RK
-Original Message-
From: Rademacher Tobias [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 01, 2003 5:15 PM
To: 'Ma
yup.. sure.
RK.
-Original Message-
From: Rademacher Tobias [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 01, 2003 5:15 PM
To: 'Maven Users List'; '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: AW: Can I use yDoc with Maven?
> I just wanted to use yDoc with maven. Is there any plug
> I just wanted to use yDoc with maven. Is there any plugin available..?
> or any guidence to the plugin?
We have written a plugin. Any interest to contribute to to maven?
Bye
Toby
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For
Hi everybody,
I just wanted to use yDoc with maven. Is there any plugin available..?
or any guidence to the plugin?
Regards,
RK.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Here is the attachment.
> -Original Message-
> From: ext [mailto:[EMAIL PROTECTED]
> Sent: 01 July, 2003 11:55
> To: [EMAIL PROTECTED]
> Subject: RE: "Unsatisfied dependencies" for reactor
> dependencies in Beta
> 9
>
>
> Jason,
>
> I extracted my problem out into the smallest example
Jason,
I extracted my problem out into the smallest example possible. Its attached. If you
extract it into a dir and invoke maven, it should first jar:install base, the
jar:install toplevel.
This works for beta 8 but not beta 9. What ya reckon?
Thanks,
Mike.
> -Original Message-
>
On Mon, 2003-06-30 at 20:48, Tim Pizey wrote:
> I cannot persuade my cvs snapshot version of Maven
> (1.0-BETA-10-SNAPSHOT) to pass a links argument to javadoc.
>
> I have
> maven.javadoc.source=1.4
> I have tried
> maven.javadoc.link=http://melati.org/javadoc/
> and
> maven.javadoc.links=http:
Don't get it Jason. Are you saying all dependencies should be specified as follows in
beta 9:
junit
junit
3.8.1
I tried this for one of the reactor-generated-dependencies but it didn't work.
Is there a real-life deployment of Maven that uses reactor-generated-dependencies that
I
49 matches
Mail list logo