You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Chris Berry <ch...@gmail.com> on 2005/10/19 05:00:16 UTC

Plugins of plugins

Greetings,
Is it possible to write a "plugin of plugins"?? I.e. a plugin that is simply
a composite of other plugins.

To make this concrete, imagine that you have a common set of plugins that
are used across many projects -- together forming a common build system. For
example, in project A you have

<plugins.
<plugin/> ..... plugin X at phase 1
<plugin/> ..... plugin Y at phase 5
<plugin/> ..... plugin Z at phase 7
<plugins>

Now I want to re-use this same "build system" in project B.
I understand that I can move this to a parent POM and use inheritance in
both projects A and B -- but this doesn't smell right to me. This is really
a "has-a" relationship, not an "is-a" relationship

What seems to make more sense would be to encapsulate these plugins into a
composite plugin, say plugin XYZ. And declare only that in the <plugins>
section.

This would allow one to use the Composite Pattern when assembling a build
system.
Is this possible??
Thanks,
-- Chris

Re: Plugins of plugins

Posted by Chris Berry <ch...@gmail.com>.
Hi Jason,
Examples:

1) In our current m2 build we have a specialized "rpm build" which lays out
4 separate plugins that play into 4 different phases of the build. Together
they form a system. Each of these plugins is parametrized, such that using
artifactId, etc, they have enough information to do their job. This set of
plugins is general enough to apply to a wide range of projects. I don't want
to repeat the plugin definitions in each project. Of course, this system is
being fleshed out, which is why I'm writing this ;-)

2) In m1 I have a build system which builds Java web services. It slips many
extra goals into the standard maven Java build sequence (e.g. WSDL2Java,
copy extra test resources, company specific stuff, etc.) I collect these
goals into a single maven build file which is imported (using jelly:core
import) into a project's vanilla maven.xml. This way I control the build
process for my many "clients" -- who ultimately just want to type "maven"
and don't really care what or how it gets built -- as long as it builds
correctly. When I port this to m2, I need something similar -- a composite
representing a complete, reusable build solution.

Does this make sense??
Thanks,
-- Chris

On 10/18/05, Brill Pappin <jo...@gmail.com> wrote:
>
> I've got one for you... I used to have a m1 goal that called several other
> goals while preparing for a release... the idea was to make a repetitive
> task (executing several goals) simple by executing one goal.
>
> Since I no longer have the maven.xml. I'd love to be able to set up a
> "composit" plugin where I could define a set of goals to execute.
>
> - Brill Pappin
>
> On 10/19/05, Jason van Zyl <ja...@maven.org> wrote:
> >
> > On Tue, 2005-10-18 at 22:00 -0500, Chris Berry wrote:
> > > Greetings,
> > > Is it possible to write a "plugin of plugins"?? I.e. a plugin that is
> > simply
> > > a composite of other plugins.
> > >
> > > To make this concrete, imagine that you have a common set of plugins
> > that
> > > are used across many projects -- together forming a common build
> system.
> > For
> > > example, in project A you have
> > >
> > > <plugins.
> > > <plugin/> ..... plugin X at phase 1
> > > <plugin/> ..... plugin Y at phase 5
> > > <plugin/> ..... plugin Z at phase 7
> > > <plugins>
> >
> > Do you have a concrete example which may help me understand what you're
> > trying to do before I respond. Looks like you're trying to provide
> > solution before we know what you're really trying to do.
> >
> > --
> > jvz.
> >
> > Jason van Zyl
> > jason at maven.org <http://maven.org> <http://maven.org>
> > http://maven.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

Re: Plugins of plugins

Posted by Jason van Zyl <ja...@maven.org>.
On Wed, 2005-10-19 at 00:00 -0400, Brill Pappin wrote:
> I've got one for you... I used to have a m1 goal that called several other
> goals while preparing for a release... the idea was to make a repetitive
> task (executing several goals) simple by executing one goal.
> 
> Since I no longer have the maven.xml. I'd love to be able to set up a
> "composit" plugin where I could define a set of goals to execute.

Fair enough, that's a good use case I think. Essentially what we're
talking about here is a way make altering the life cycle very flexible.
Exactly what Chris is talking about where you might graft a bunch of
mojos/goals into the life cycle. You may want to execute some goals that
are not part of the life cycle and some that are. 

So maybe a plugin with a configuration that allowed you to do this would
be the solution. I don't think this would be hard to do but would be
good to get a couple more concrete use cases first.  

> - Brill Pappin
> 
> On 10/19/05, Jason van Zyl <ja...@maven.org> wrote:
> >
> > On Tue, 2005-10-18 at 22:00 -0500, Chris Berry wrote:
> > > Greetings,
> > > Is it possible to write a "plugin of plugins"?? I.e. a plugin that is
> > simply
> > > a composite of other plugins.
> > >
> > > To make this concrete, imagine that you have a common set of plugins
> > that
> > > are used across many projects -- together forming a common build system.
> > For
> > > example, in project A you have
> > >
> > > <plugins.
> > > <plugin/> ..... plugin X at phase 1
> > > <plugin/> ..... plugin Y at phase 5
> > > <plugin/> ..... plugin Z at phase 7
> > > <plugins>
> >
> > Do you have a concrete example which may help me understand what you're
> > trying to do before I respond. Looks like you're trying to provide
> > solution before we know what you're really trying to do.
> >
> > --
> > jvz.
> >
> > Jason van Zyl
> > jason at maven.org <http://maven.org>
> > http://maven.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
-- 
jvz.

Jason van Zyl
jason at maven.org
http://maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Plugins of plugins

Posted by Brill Pappin <jo...@gmail.com>.
I've got one for you... I used to have a m1 goal that called several other
goals while preparing for a release... the idea was to make a repetitive
task (executing several goals) simple by executing one goal.

Since I no longer have the maven.xml. I'd love to be able to set up a
"composit" plugin where I could define a set of goals to execute.

- Brill Pappin

On 10/19/05, Jason van Zyl <ja...@maven.org> wrote:
>
> On Tue, 2005-10-18 at 22:00 -0500, Chris Berry wrote:
> > Greetings,
> > Is it possible to write a "plugin of plugins"?? I.e. a plugin that is
> simply
> > a composite of other plugins.
> >
> > To make this concrete, imagine that you have a common set of plugins
> that
> > are used across many projects -- together forming a common build system.
> For
> > example, in project A you have
> >
> > <plugins.
> > <plugin/> ..... plugin X at phase 1
> > <plugin/> ..... plugin Y at phase 5
> > <plugin/> ..... plugin Z at phase 7
> > <plugins>
>
> Do you have a concrete example which may help me understand what you're
> trying to do before I respond. Looks like you're trying to provide
> solution before we know what you're really trying to do.
>
> --
> jvz.
>
> Jason van Zyl
> jason at maven.org <http://maven.org>
> http://maven.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
Oh -- thanks! Now I am confused. Scott Ryan said m2 was such a complete
rewrite that the repositories would have to be duplicated. Then, after
submitting htmlparser.sourceforge.net to the m1 repository, Carlos explained
that there is nothing more for me to do for m2. I think he said m1 and m2
would use the same repository?

Hmmm.... Well, I did not look very hard but the instructions for submitting
to m2 repository look suspiciously similar to the m1 instructions.

Siegfried

-----Original Message-----
From: Ralph Pöllath [mailto:lists@poellath.org] 
Sent: Friday, October 21, 2005 11:18 AM
To: Maven Users List
Subject: Re: How to add html parser dependency?

On 21.10.2005, at 19:09, Siegfried Heintze wrote:
> OK, I've submitted my first bundle upload to JIRA for m1. I had the  
> good
> fortune to meet the great Scott Ryan in person last night when I  
> learned
> that I need to upload a second time with a different format to  
> accommodate
> m2.
>
> Can someone point me to the m2 counterpart of
> http://maven.apache.org/reference/repository-upload.html ? I did a  
> google
> search on http://maven.apache.org/maven2/ for "upload" and could  
> not find
> such a counterpart.

Does this help?
http://maven.apache.org/maven2/guides/mini/guide-ibiblio-upload.html

Cheers,
-Ralph.

> Thanks,
> Siegfried
>
>
>
>>>> -----Original Message-----
>>>> From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of
>>>>
> Carlos
>
>>>> Sanchez
>>>> Sent: Wednesday, October 19, 2005 3:45 PM
>>>> To: Maven Users List
>>>> Subject: Re: How to add html parser dependency?
>>>>
>>>> Hi,
>>>>
>>>> "maven create-upload-bundle" is to create a upload bundle from an
>>>> existing maven project. If you want to upload a jar from a third
>>>> party, you have to make a jar with three contents:
>>>> - the jar file you want to upload
>>>> - the license the jar is under (LICENSE.TXT)
>>>> - project.xml, with that minimal information to make a more  
>>>> documented
>>>>
>>> repo
>>>
>>>>
>>>> regards
>>>>
>>>> On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
>>>>
>>>>> I don't understand
>>>>>
>>>> http://maven.apache.org/reference/repository-upload.html.
>>>>
>>>>> http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
>>>>>
>>>>> Where does the project.xml come from? Do I create a new empty
>>>>>
> project
>
>>> with
>>>
>>>>> maven genapp? Or does maven create it? OR do I create it with  
>>>>> emacs?
>>>>>
>> It
>>
>>>> does
>>>>
>>>>> not make sense to use my current project.
>>>>>
>>>>> OK, so I tried "maven create-upload-bundle" in an empty temp
>>>>>
>> directory.
>>
>>>>> Maven only created a "target" directory contain a bunch of empty
>>>>>
>>>> directories
>>>>
>>>>> and no jar file.
>>>>>
>>> http://maven.apache.org/reference/repository-upload.html
>>>
>>>>> explained that it would create a jar file -- it did not.
>>>>>
>>>>> I'm confused.
>>>>>
>>>>> Thanks,
>>>>> Siegfried
>>>>>
>>>>> -----Original Message-----
>>>>> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
>>>>> Sent: Tuesday, October 18, 2005 10:41 PM
>>>>> To: 'Maven Users List'
>>>>> Subject: RE: How to add html parser dependency?
>>>>>
>>>>> Yes this is the faster solution.
>>>>> You can also follow the instructions given in [1] to upload it to
>>>>>
>>> ibiblio.
>>>
>>>>>
>>>>> [1] http://maven.apache.org/reference/repository-upload.html
>>>>>
>>>>> Arnaud
>>>>>
>>>>>
>>>>>
>>>>>> -----Message d'origine-----
>>>>>> De : Siegfried Heintze [mailto:siegfried@heintze.com]
>>>>>> Envoyé : mercredi 19 octobre 2005 06:13
>>>>>> À : 'Maven Users List'
>>>>>> Objet : How to add html parser dependency?
>>>>>>
>>>>>> I'm looking for an HTML parser. I heard that
>>>>>> http://java-source.net/open-source/html-parsers/html-parser
>>>>>> is good. How do I add that to my maven 1 project? I don't see
>>>>>> this in the mevenide repository browser. Do I have to
>>>>>> manually download it and stick it in my local maven repository?
>>>>>>
>>>>>> Sieg
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>> ---------------------------------------------------------------------
>>
>>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
> ---------------------------------------------------------------------
>
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>>>
>>>>>
> ---------------------------------------------------------------------
>
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>>>
>>>>
>>>> ------------------------------------------------------------------- 
>>>> --
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>> ------------------------------------------------------------------- 
>>>> --
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>> --
>>> http://www.multitask.com.au/people/dion/
>>> "You are going to let the fear of poverty govern your life and your
>>> reward will be that you will eat, but you will not live." - George
>>> Bernard Shaw
>>>
>>> -------------------------------------------------------------------- 
>>> -
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>>> -------------------------------------------------------------------- 
>>> -
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: How to add html parser dependency?

Posted by Ralph Pöllath <li...@poellath.org>.
On 21.10.2005, at 19:09, Siegfried Heintze wrote:
> OK, I've submitted my first bundle upload to JIRA for m1. I had the  
> good
> fortune to meet the great Scott Ryan in person last night when I  
> learned
> that I need to upload a second time with a different format to  
> accommodate
> m2.
>
> Can someone point me to the m2 counterpart of
> http://maven.apache.org/reference/repository-upload.html ? I did a  
> google
> search on http://maven.apache.org/maven2/ for "upload" and could  
> not find
> such a counterpart.

Does this help?
http://maven.apache.org/maven2/guides/mini/guide-ibiblio-upload.html

Cheers,
-Ralph.

> Thanks,
> Siegfried
>
>
>
>>>> -----Original Message-----
>>>> From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of
>>>>
> Carlos
>
>>>> Sanchez
>>>> Sent: Wednesday, October 19, 2005 3:45 PM
>>>> To: Maven Users List
>>>> Subject: Re: How to add html parser dependency?
>>>>
>>>> Hi,
>>>>
>>>> "maven create-upload-bundle" is to create a upload bundle from an
>>>> existing maven project. If you want to upload a jar from a third
>>>> party, you have to make a jar with three contents:
>>>> - the jar file you want to upload
>>>> - the license the jar is under (LICENSE.TXT)
>>>> - project.xml, with that minimal information to make a more  
>>>> documented
>>>>
>>> repo
>>>
>>>>
>>>> regards
>>>>
>>>> On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
>>>>
>>>>> I don't understand
>>>>>
>>>> http://maven.apache.org/reference/repository-upload.html.
>>>>
>>>>> http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
>>>>>
>>>>> Where does the project.xml come from? Do I create a new empty
>>>>>
> project
>
>>> with
>>>
>>>>> maven genapp? Or does maven create it? OR do I create it with  
>>>>> emacs?
>>>>>
>> It
>>
>>>> does
>>>>
>>>>> not make sense to use my current project.
>>>>>
>>>>> OK, so I tried "maven create-upload-bundle" in an empty temp
>>>>>
>> directory.
>>
>>>>> Maven only created a "target" directory contain a bunch of empty
>>>>>
>>>> directories
>>>>
>>>>> and no jar file.
>>>>>
>>> http://maven.apache.org/reference/repository-upload.html
>>>
>>>>> explained that it would create a jar file -- it did not.
>>>>>
>>>>> I'm confused.
>>>>>
>>>>> Thanks,
>>>>> Siegfried
>>>>>
>>>>> -----Original Message-----
>>>>> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
>>>>> Sent: Tuesday, October 18, 2005 10:41 PM
>>>>> To: 'Maven Users List'
>>>>> Subject: RE: How to add html parser dependency?
>>>>>
>>>>> Yes this is the faster solution.
>>>>> You can also follow the instructions given in [1] to upload it to
>>>>>
>>> ibiblio.
>>>
>>>>>
>>>>> [1] http://maven.apache.org/reference/repository-upload.html
>>>>>
>>>>> Arnaud
>>>>>
>>>>>
>>>>>
>>>>>> -----Message d'origine-----
>>>>>> De : Siegfried Heintze [mailto:siegfried@heintze.com]
>>>>>> Envoyé : mercredi 19 octobre 2005 06:13
>>>>>> À : 'Maven Users List'
>>>>>> Objet : How to add html parser dependency?
>>>>>>
>>>>>> I'm looking for an HTML parser. I heard that
>>>>>> http://java-source.net/open-source/html-parsers/html-parser
>>>>>> is good. How do I add that to my maven 1 project? I don't see
>>>>>> this in the mevenide repository browser. Do I have to
>>>>>> manually download it and stick it in my local maven repository?
>>>>>>
>>>>>> Sieg
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>> ---------------------------------------------------------------------
>>
>>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
> ---------------------------------------------------------------------
>
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>>>
>>>>>
> ---------------------------------------------------------------------
>
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>>>
>>>>
>>>> ------------------------------------------------------------------- 
>>>> --
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>> ------------------------------------------------------------------- 
>>>> --
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>> --
>>> http://www.multitask.com.au/people/dion/
>>> "You are going to let the fear of poverty govern your life and your
>>> reward will be that you will eat, but you will not live." - George
>>> Bernard Shaw
>>>
>>> -------------------------------------------------------------------- 
>>> -
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>>> -------------------------------------------------------------------- 
>>> -
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
OK, I've submitted my first bundle upload to JIRA for m1. I had the good
fortune to meet the great Scott Ryan in person last night when I learned
that I need to upload a second time with a different format to accommodate
m2.

Can someone point me to the m2 counterpart of
http://maven.apache.org/reference/repository-upload.html ? I did a google
search on http://maven.apache.org/maven2/ for "upload" and could not find
such a counterpart.

Thanks,
Siegfried


> > > -----Original Message-----
> > > From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of
Carlos
> > > Sanchez
> > > Sent: Wednesday, October 19, 2005 3:45 PM
> > > To: Maven Users List
> > > Subject: Re: How to add html parser dependency?
> > >
> > > Hi,
> > >
> > > "maven create-upload-bundle" is to create a upload bundle from an
> > > existing maven project. If you want to upload a jar from a third
> > > party, you have to make a jar with three contents:
> > > - the jar file you want to upload
> > > - the license the jar is under (LICENSE.TXT)
> > > - project.xml, with that minimal information to make a more documented
> > repo
> > >
> > > regards
> > >
> > > On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> > > > I don't understand
> > > http://maven.apache.org/reference/repository-upload.html.
> > > > http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> > > >
> > > > Where does the project.xml come from? Do I create a new empty
project
> > with
> > > > maven genapp? Or does maven create it? OR do I create it with emacs?
> It
> > > does
> > > > not make sense to use my current project.
> > > >
> > > > OK, so I tried "maven create-upload-bundle" in an empty temp
> directory.
> > > > Maven only created a "target" directory contain a bunch of empty
> > > directories
> > > > and no jar file.
> > http://maven.apache.org/reference/repository-upload.html
> > > > explained that it would create a jar file -- it did not.
> > > >
> > > > I'm confused.
> > > >
> > > > Thanks,
> > > > Siegfried
> > > >
> > > > -----Original Message-----
> > > > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > > > Sent: Tuesday, October 18, 2005 10:41 PM
> > > > To: 'Maven Users List'
> > > > Subject: RE: How to add html parser dependency?
> > > >
> > > > Yes this is the faster solution.
> > > > You can also follow the instructions given in [1] to upload it to
> > ibiblio.
> > > >
> > > > [1] http://maven.apache.org/reference/repository-upload.html
> > > >
> > > > Arnaud
> > > >
> > > >
> > > > > -----Message d'origine-----
> > > > > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > > > > Envoyé : mercredi 19 octobre 2005 06:13
> > > > > À : 'Maven Users List'
> > > > > Objet : How to add html parser dependency?
> > > > >
> > > > > I'm looking for an HTML parser. I heard that
> > > > > http://java-source.net/open-source/html-parsers/html-parser
> > > > > is good. How do I add that to my maven 1 project? I don't see
> > > > > this in the mevenide repository browser. Do I have to
> > > > > manually download it and stick it in my local maven repository?
> > > > >
> > > > > Sieg
> > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > >
---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > > >
---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
> >
> > --
> > http://www.multitask.com.au/people/dion/
> > "You are going to let the fear of poverty govern your life and your
> > reward will be that you will eat, but you will not live." - George
> > Bernard Shaw
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: How to add html parser dependency?

Posted by Carlos Sanchez <ca...@apache.org>.
A mix of both, so you have to be careful about doing things right

On 10/20/05, Siegfried Heintze <si...@heintze.com> wrote:
> When I submit these jar files via jira, am I submitting them to a human or
> an automated process that automatically posts them on ibiblio?
> Thanks,
> Siegfried
>
> -----Original Message-----
> From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
> Sanchez
> Sent: Thursday, October 20, 2005 11:32 AM
> To: Maven Users List
> Subject: Re: How to add html parser dependency?
>
> On 10/19/05, Siegfried Heintze <si...@heintze.com> wrote:
> > Htmlparser includes
> >
> > filterbuilder.jar
> > htmllexer.jar
> > htmlparser.jar
> > junit.jar
> > sax2.jar
> > thumbelina.jar
> >
> > Do I have to make a separate project.xml and jar for each one of these?
>
>
> Yes
>
>
> > Sax2.jar and junit.jar looks like they came from elsewhere, but I don't
> know
> > which version he is using or where he got them.
>
>
> You have to figure out yourself
>
> Samples are in ibiblio, eg.
> http://www.ibiblio.org/maven/org.hibernate/poms/hibernate-3.1beta3.pom
>
>
> >
> > How do I tell which of these dependencies are external to the project and
> > which of these are part of the project?
>
>
> You have to figure out yourself
>
>
> >
> > Thanks,
> > Siegfried
> >
> >
> >
> > -----Original Message-----
> > From: Dion Gillard [mailto:dion.gillard@gmail.com]
> > Sent: Wednesday, October 19, 2005 10:08 PM
> > To: Maven Users List
> > Subject: Re: How to add html parser dependency?
> >
> > From that page:
> >
> > "The HTML Parser is an open source library released under GNU Lesser
> > General Public License, which basically says you are free to use the
> > library "as is" in other (even proprietary) products, as long as due
> > credit is given to the authors and the source code for the HTMLParser
> > is included or available with the other product. For modified or
> > embedded use, please consult the LGPL license.
> > "
> >
> > On 10/20/05, Siegfried Heintze <si...@heintze.com> wrote:
> > > Where do I get the license.txt? http://htmlparser.sourceforge.net/ does
> > not
> > > have a LICENSE.TXT.
> > > Thanks,
> > > sieg
> > >
> > > -----Original Message-----
> > > From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
> > > Sanchez
> > > Sent: Wednesday, October 19, 2005 3:45 PM
> > > To: Maven Users List
> > > Subject: Re: How to add html parser dependency?
> > >
> > > Hi,
> > >
> > > "maven create-upload-bundle" is to create a upload bundle from an
> > > existing maven project. If you want to upload a jar from a third
> > > party, you have to make a jar with three contents:
> > > - the jar file you want to upload
> > > - the license the jar is under (LICENSE.TXT)
> > > - project.xml, with that minimal information to make a more documented
> > repo
> > >
> > > regards
> > >
> > > On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> > > > I don't understand
> > > http://maven.apache.org/reference/repository-upload.html.
> > > > http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> > > >
> > > > Where does the project.xml come from? Do I create a new empty project
> > with
> > > > maven genapp? Or does maven create it? OR do I create it with emacs?
> It
> > > does
> > > > not make sense to use my current project.
> > > >
> > > > OK, so I tried "maven create-upload-bundle" in an empty temp
> directory.
> > > > Maven only created a "target" directory contain a bunch of empty
> > > directories
> > > > and no jar file.
> > http://maven.apache.org/reference/repository-upload.html
> > > > explained that it would create a jar file -- it did not.
> > > >
> > > > I'm confused.
> > > >
> > > > Thanks,
> > > > Siegfried
> > > >
> > > > -----Original Message-----
> > > > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > > > Sent: Tuesday, October 18, 2005 10:41 PM
> > > > To: 'Maven Users List'
> > > > Subject: RE: How to add html parser dependency?
> > > >
> > > > Yes this is the faster solution.
> > > > You can also follow the instructions given in [1] to upload it to
> > ibiblio.
> > > >
> > > > [1] http://maven.apache.org/reference/repository-upload.html
> > > >
> > > > Arnaud
> > > >
> > > >
> > > > > -----Message d'origine-----
> > > > > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > > > > Envoyé : mercredi 19 octobre 2005 06:13
> > > > > À : 'Maven Users List'
> > > > > Objet : How to add html parser dependency?
> > > > >
> > > > > I'm looking for an HTML parser. I heard that
> > > > > http://java-source.net/open-source/html-parsers/html-parser
> > > > > is good. How do I add that to my maven 1 project? I don't see
> > > > > this in the mevenide repository browser. Do I have to
> > > > > manually download it and stick it in my local maven repository?
> > > > >
> > > > > Sieg
> > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
> >
> > --
> > http://www.multitask.com.au/people/dion/
> > "You are going to let the fear of poverty govern your life and your
> > reward will be that you will eat, but you will not live." - George
> > Bernard Shaw
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
When I submit these jar files via jira, am I submitting them to a human or
an automated process that automatically posts them on ibiblio?
Thanks,
Siegfried

-----Original Message-----
From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
Sanchez
Sent: Thursday, October 20, 2005 11:32 AM
To: Maven Users List
Subject: Re: How to add html parser dependency?

On 10/19/05, Siegfried Heintze <si...@heintze.com> wrote:
> Htmlparser includes
>
> filterbuilder.jar
> htmllexer.jar
> htmlparser.jar
> junit.jar
> sax2.jar
> thumbelina.jar
>
> Do I have to make a separate project.xml and jar for each one of these?


Yes


> Sax2.jar and junit.jar looks like they came from elsewhere, but I don't
know
> which version he is using or where he got them.


You have to figure out yourself

Samples are in ibiblio, eg.
http://www.ibiblio.org/maven/org.hibernate/poms/hibernate-3.1beta3.pom


>
> How do I tell which of these dependencies are external to the project and
> which of these are part of the project?


You have to figure out yourself


>
> Thanks,
> Siegfried
>
>
>
> -----Original Message-----
> From: Dion Gillard [mailto:dion.gillard@gmail.com]
> Sent: Wednesday, October 19, 2005 10:08 PM
> To: Maven Users List
> Subject: Re: How to add html parser dependency?
>
> From that page:
>
> "The HTML Parser is an open source library released under GNU Lesser
> General Public License, which basically says you are free to use the
> library "as is" in other (even proprietary) products, as long as due
> credit is given to the authors and the source code for the HTMLParser
> is included or available with the other product. For modified or
> embedded use, please consult the LGPL license.
> "
>
> On 10/20/05, Siegfried Heintze <si...@heintze.com> wrote:
> > Where do I get the license.txt? http://htmlparser.sourceforge.net/ does
> not
> > have a LICENSE.TXT.
> > Thanks,
> > sieg
> >
> > -----Original Message-----
> > From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
> > Sanchez
> > Sent: Wednesday, October 19, 2005 3:45 PM
> > To: Maven Users List
> > Subject: Re: How to add html parser dependency?
> >
> > Hi,
> >
> > "maven create-upload-bundle" is to create a upload bundle from an
> > existing maven project. If you want to upload a jar from a third
> > party, you have to make a jar with three contents:
> > - the jar file you want to upload
> > - the license the jar is under (LICENSE.TXT)
> > - project.xml, with that minimal information to make a more documented
> repo
> >
> > regards
> >
> > On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> > > I don't understand
> > http://maven.apache.org/reference/repository-upload.html.
> > > http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> > >
> > > Where does the project.xml come from? Do I create a new empty project
> with
> > > maven genapp? Or does maven create it? OR do I create it with emacs?
It
> > does
> > > not make sense to use my current project.
> > >
> > > OK, so I tried "maven create-upload-bundle" in an empty temp
directory.
> > > Maven only created a "target" directory contain a bunch of empty
> > directories
> > > and no jar file.
> http://maven.apache.org/reference/repository-upload.html
> > > explained that it would create a jar file -- it did not.
> > >
> > > I'm confused.
> > >
> > > Thanks,
> > > Siegfried
> > >
> > > -----Original Message-----
> > > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > > Sent: Tuesday, October 18, 2005 10:41 PM
> > > To: 'Maven Users List'
> > > Subject: RE: How to add html parser dependency?
> > >
> > > Yes this is the faster solution.
> > > You can also follow the instructions given in [1] to upload it to
> ibiblio.
> > >
> > > [1] http://maven.apache.org/reference/repository-upload.html
> > >
> > > Arnaud
> > >
> > >
> > > > -----Message d'origine-----
> > > > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > > > Envoyé : mercredi 19 octobre 2005 06:13
> > > > À : 'Maven Users List'
> > > > Objet : How to add html parser dependency?
> > > >
> > > > I'm looking for an HTML parser. I heard that
> > > > http://java-source.net/open-source/html-parsers/html-parser
> > > > is good. How do I add that to my maven 1 project? I don't see
> > > > this in the mevenide repository browser. Do I have to
> > > > manually download it and stick it in my local maven repository?
> > > >
> > > > Sieg
> > > >
> > > >
> > > >
---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
>
> --
> http://www.multitask.com.au/people/dion/
> "You are going to let the fear of poverty govern your life and your
> reward will be that you will eat, but you will not live." - George
> Bernard Shaw
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: How to add html parser dependency?

Posted by Carlos Sanchez <ca...@apache.org>.
On 10/19/05, Siegfried Heintze <si...@heintze.com> wrote:
> Htmlparser includes
>
> filterbuilder.jar
> htmllexer.jar
> htmlparser.jar
> junit.jar
> sax2.jar
> thumbelina.jar
>
> Do I have to make a separate project.xml and jar for each one of these?


Yes


> Sax2.jar and junit.jar looks like they came from elsewhere, but I don't know
> which version he is using or where he got them.


You have to figure out yourself

Samples are in ibiblio, eg.
http://www.ibiblio.org/maven/org.hibernate/poms/hibernate-3.1beta3.pom


>
> How do I tell which of these dependencies are external to the project and
> which of these are part of the project?


You have to figure out yourself


>
> Thanks,
> Siegfried
>
>
>
> -----Original Message-----
> From: Dion Gillard [mailto:dion.gillard@gmail.com]
> Sent: Wednesday, October 19, 2005 10:08 PM
> To: Maven Users List
> Subject: Re: How to add html parser dependency?
>
> From that page:
>
> "The HTML Parser is an open source library released under GNU Lesser
> General Public License, which basically says you are free to use the
> library "as is" in other (even proprietary) products, as long as due
> credit is given to the authors and the source code for the HTMLParser
> is included or available with the other product. For modified or
> embedded use, please consult the LGPL license.
> "
>
> On 10/20/05, Siegfried Heintze <si...@heintze.com> wrote:
> > Where do I get the license.txt? http://htmlparser.sourceforge.net/ does
> not
> > have a LICENSE.TXT.
> > Thanks,
> > sieg
> >
> > -----Original Message-----
> > From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
> > Sanchez
> > Sent: Wednesday, October 19, 2005 3:45 PM
> > To: Maven Users List
> > Subject: Re: How to add html parser dependency?
> >
> > Hi,
> >
> > "maven create-upload-bundle" is to create a upload bundle from an
> > existing maven project. If you want to upload a jar from a third
> > party, you have to make a jar with three contents:
> > - the jar file you want to upload
> > - the license the jar is under (LICENSE.TXT)
> > - project.xml, with that minimal information to make a more documented
> repo
> >
> > regards
> >
> > On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> > > I don't understand
> > http://maven.apache.org/reference/repository-upload.html.
> > > http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> > >
> > > Where does the project.xml come from? Do I create a new empty project
> with
> > > maven genapp? Or does maven create it? OR do I create it with emacs? It
> > does
> > > not make sense to use my current project.
> > >
> > > OK, so I tried "maven create-upload-bundle" in an empty temp directory.
> > > Maven only created a "target" directory contain a bunch of empty
> > directories
> > > and no jar file.
> http://maven.apache.org/reference/repository-upload.html
> > > explained that it would create a jar file -- it did not.
> > >
> > > I'm confused.
> > >
> > > Thanks,
> > > Siegfried
> > >
> > > -----Original Message-----
> > > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > > Sent: Tuesday, October 18, 2005 10:41 PM
> > > To: 'Maven Users List'
> > > Subject: RE: How to add html parser dependency?
> > >
> > > Yes this is the faster solution.
> > > You can also follow the instructions given in [1] to upload it to
> ibiblio.
> > >
> > > [1] http://maven.apache.org/reference/repository-upload.html
> > >
> > > Arnaud
> > >
> > >
> > > > -----Message d'origine-----
> > > > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > > > Envoyé : mercredi 19 octobre 2005 06:13
> > > > À : 'Maven Users List'
> > > > Objet : How to add html parser dependency?
> > > >
> > > > I'm looking for an HTML parser. I heard that
> > > > http://java-source.net/open-source/html-parsers/html-parser
> > > > is good. How do I add that to my maven 1 project? I don't see
> > > > this in the mevenide repository browser. Do I have to
> > > > manually download it and stick it in my local maven repository?
> > > >
> > > > Sieg
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
>
> --
> http://www.multitask.com.au/people/dion/
> "You are going to let the fear of poverty govern your life and your
> reward will be that you will eat, but you will not live." - George
> Bernard Shaw
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
Htmlparser includes 

filterbuilder.jar
htmllexer.jar 
htmlparser.jar
junit.jar        
sax2.jar      
thumbelina.jar

Do I have to make a separate project.xml and jar for each one of these?
Sax2.jar and junit.jar looks like they came from elsewhere, but I don't know
which version he is using or where he got them.

How do I tell which of these dependencies are external to the project and
which of these are part of the project?

Thanks,
Siegfried



-----Original Message-----
From: Dion Gillard [mailto:dion.gillard@gmail.com] 
Sent: Wednesday, October 19, 2005 10:08 PM
To: Maven Users List
Subject: Re: How to add html parser dependency?

>From that page:

"The HTML Parser is an open source library released under GNU Lesser
General Public License, which basically says you are free to use the
library "as is" in other (even proprietary) products, as long as due
credit is given to the authors and the source code for the HTMLParser
is included or available with the other product. For modified or
embedded use, please consult the LGPL license.
"

On 10/20/05, Siegfried Heintze <si...@heintze.com> wrote:
> Where do I get the license.txt? http://htmlparser.sourceforge.net/ does
not
> have a LICENSE.TXT.
> Thanks,
> sieg
>
> -----Original Message-----
> From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
> Sanchez
> Sent: Wednesday, October 19, 2005 3:45 PM
> To: Maven Users List
> Subject: Re: How to add html parser dependency?
>
> Hi,
>
> "maven create-upload-bundle" is to create a upload bundle from an
> existing maven project. If you want to upload a jar from a third
> party, you have to make a jar with three contents:
> - the jar file you want to upload
> - the license the jar is under (LICENSE.TXT)
> - project.xml, with that minimal information to make a more documented
repo
>
> regards
>
> On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> > I don't understand
> http://maven.apache.org/reference/repository-upload.html.
> > http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> >
> > Where does the project.xml come from? Do I create a new empty project
with
> > maven genapp? Or does maven create it? OR do I create it with emacs? It
> does
> > not make sense to use my current project.
> >
> > OK, so I tried "maven create-upload-bundle" in an empty temp directory.
> > Maven only created a "target" directory contain a bunch of empty
> directories
> > and no jar file.
http://maven.apache.org/reference/repository-upload.html
> > explained that it would create a jar file -- it did not.
> >
> > I'm confused.
> >
> > Thanks,
> > Siegfried
> >
> > -----Original Message-----
> > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > Sent: Tuesday, October 18, 2005 10:41 PM
> > To: 'Maven Users List'
> > Subject: RE: How to add html parser dependency?
> >
> > Yes this is the faster solution.
> > You can also follow the instructions given in [1] to upload it to
ibiblio.
> >
> > [1] http://maven.apache.org/reference/repository-upload.html
> >
> > Arnaud
> >
> >
> > > -----Message d'origine-----
> > > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > > Envoyé : mercredi 19 octobre 2005 06:13
> > > À : 'Maven Users List'
> > > Objet : How to add html parser dependency?
> > >
> > > I'm looking for an HTML parser. I heard that
> > > http://java-source.net/open-source/html-parsers/html-parser
> > > is good. How do I add that to my maven 1 project? I don't see
> > > this in the mevenide repository browser. Do I have to
> > > manually download it and stick it in my local maven repository?
> > >
> > > Sieg
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


--
http://www.multitask.com.au/people/dion/
"You are going to let the fear of poverty govern your life and your
reward will be that you will eat, but you will not live." - George
Bernard Shaw

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: How to add html parser dependency?

Posted by Dion Gillard <di...@gmail.com>.
>From that page:

"The HTML Parser is an open source library released under GNU Lesser
General Public License, which basically says you are free to use the
library "as is" in other (even proprietary) products, as long as due
credit is given to the authors and the source code for the HTMLParser
is included or available with the other product. For modified or
embedded use, please consult the LGPL license.
"

On 10/20/05, Siegfried Heintze <si...@heintze.com> wrote:
> Where do I get the license.txt? http://htmlparser.sourceforge.net/ does not
> have a LICENSE.TXT.
> Thanks,
> sieg
>
> -----Original Message-----
> From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
> Sanchez
> Sent: Wednesday, October 19, 2005 3:45 PM
> To: Maven Users List
> Subject: Re: How to add html parser dependency?
>
> Hi,
>
> "maven create-upload-bundle" is to create a upload bundle from an
> existing maven project. If you want to upload a jar from a third
> party, you have to make a jar with three contents:
> - the jar file you want to upload
> - the license the jar is under (LICENSE.TXT)
> - project.xml, with that minimal information to make a more documented repo
>
> regards
>
> On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> > I don't understand
> http://maven.apache.org/reference/repository-upload.html.
> > http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> >
> > Where does the project.xml come from? Do I create a new empty project with
> > maven genapp? Or does maven create it? OR do I create it with emacs? It
> does
> > not make sense to use my current project.
> >
> > OK, so I tried "maven create-upload-bundle" in an empty temp directory.
> > Maven only created a "target" directory contain a bunch of empty
> directories
> > and no jar file. http://maven.apache.org/reference/repository-upload.html
> > explained that it would create a jar file -- it did not.
> >
> > I'm confused.
> >
> > Thanks,
> > Siegfried
> >
> > -----Original Message-----
> > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > Sent: Tuesday, October 18, 2005 10:41 PM
> > To: 'Maven Users List'
> > Subject: RE: How to add html parser dependency?
> >
> > Yes this is the faster solution.
> > You can also follow the instructions given in [1] to upload it to ibiblio.
> >
> > [1] http://maven.apache.org/reference/repository-upload.html
> >
> > Arnaud
> >
> >
> > > -----Message d'origine-----
> > > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > > Envoyé : mercredi 19 octobre 2005 06:13
> > > À : 'Maven Users List'
> > > Objet : How to add html parser dependency?
> > >
> > > I'm looking for an HTML parser. I heard that
> > > http://java-source.net/open-source/html-parsers/html-parser
> > > is good. How do I add that to my maven 1 project? I don't see
> > > this in the mevenide repository browser. Do I have to
> > > manually download it and stick it in my local maven repository?
> > >
> > > Sieg
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


--
http://www.multitask.com.au/people/dion/
"You are going to let the fear of poverty govern your life and your
reward will be that you will eat, but you will not live." - George
Bernard Shaw

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add jtidy as a depency?

Posted by Jason van Zyl <ja...@maven.org>.
On Fri, 2005-10-28 at 08:52 -0600, Siegfried Heintze wrote:
> Did I miss the reply to this? I've been looking for it. If I did not miss
> it, can anyone advise me on how to add JTidy?

Try again now, all the -dev JARs were put back into the repository. If
that doesn't work now then we have a bigger problem.

> Thanks,
> Siegfried
> 
> -----Original Message-----
> From: Jason van Zyl [mailto:jason@maven.org] 
> Sent: Thursday, October 20, 2005 9:26 AM
> To: Maven Users List
> Subject: Re: How to add jtidy as a depency?
> 
> On Wed, 2005-10-19 at 22:42 -0600, Siegfried Heintze wrote:
> > Thanks for that last response on license.txt.
> > 
> > I'm looking at http://www.ibiblio.org/maven/jtidy/jars/. How would I add
> > this as a dependency?
> > 
> > This does not work:
> > 
> >     <dependency>
> >       <groupId>jtidy</groupId>
> >       <artifactId>jtidy</artifactId>
> >       <version>4aug2000r7-dev</version>
> >     </dependency>
> 
> I had that problem yesterday when I used a clean repo. I thought it was
> a timeout but that -dev might be causing problems. I'll take a peek.
> 
> > Thanks,
> > Siegfried
> > 
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> > 
> > 
-- 
jvz.

Jason van Zyl
jason at maven.org
http://maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add jtidy as a depency?

Posted by Siegfried Heintze <si...@heintze.com>.
Did I miss the reply to this? I've been looking for it. If I did not miss
it, can anyone advise me on how to add JTidy?
Thanks,
Siegfried

-----Original Message-----
From: Jason van Zyl [mailto:jason@maven.org] 
Sent: Thursday, October 20, 2005 9:26 AM
To: Maven Users List
Subject: Re: How to add jtidy as a depency?

On Wed, 2005-10-19 at 22:42 -0600, Siegfried Heintze wrote:
> Thanks for that last response on license.txt.
> 
> I'm looking at http://www.ibiblio.org/maven/jtidy/jars/. How would I add
> this as a dependency?
> 
> This does not work:
> 
>     <dependency>
>       <groupId>jtidy</groupId>
>       <artifactId>jtidy</artifactId>
>       <version>4aug2000r7-dev</version>
>     </dependency>

I had that problem yesterday when I used a clean repo. I thought it was
a timeout but that -dev might be causing problems. I'll take a peek.

> Thanks,
> Siegfried
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
-- 
jvz.

Jason van Zyl
jason at maven.org
http://maven.apache.org

We all have problems. How we deal with them is a measure of our worth.

 -- Unknown


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: How to add jtidy as a depency?

Posted by Jason van Zyl <ja...@maven.org>.
On Wed, 2005-10-19 at 22:42 -0600, Siegfried Heintze wrote:
> Thanks for that last response on license.txt.
> 
> I'm looking at http://www.ibiblio.org/maven/jtidy/jars/. How would I add
> this as a dependency?
> 
> This does not work:
> 
>     <dependency>
>       <groupId>jtidy</groupId>
>       <artifactId>jtidy</artifactId>
>       <version>4aug2000r7-dev</version>
>     </dependency>

I had that problem yesterday when I used a clean repo. I thought it was
a timeout but that -dev might be causing problems. I'll take a peek.

> Thanks,
> Siegfried
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
-- 
jvz.

Jason van Zyl
jason at maven.org
http://maven.apache.org

We all have problems. How we deal with them is a measure of our worth.

 -- Unknown


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


How to add jtidy as a depency?

Posted by Siegfried Heintze <si...@heintze.com>.
Thanks for that last response on license.txt.

I'm looking at http://www.ibiblio.org/maven/jtidy/jars/. How would I add
this as a dependency?

This does not work:

    <dependency>
      <groupId>jtidy</groupId>
      <artifactId>jtidy</artifactId>
      <version>4aug2000r7-dev</version>
    </dependency>

Thanks,
Siegfried


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
Is there a minimal example someplace? What is in the C:\Documents and
Settings\Administrator\.maven\cache directory? Are these examples? If not,
is there an example somewhere of a minimal pom?
Sieg

-----Original Message-----
From: Siegfried Heintze [mailto:siegfried@heintze.com] 
Sent: Wednesday, October 19, 2005 10:04 PM
To: 'Maven Users List'
Subject: RE: How to add html parser dependency?

Where do I get the license.txt? http://htmlparser.sourceforge.net/ does not
have a LICENSE.TXT. 
Thanks,
sieg

-----Original Message-----
From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
Sanchez
Sent: Wednesday, October 19, 2005 3:45 PM
To: Maven Users List
Subject: Re: How to add html parser dependency?

Hi,

"maven create-upload-bundle" is to create a upload bundle from an
existing maven project. If you want to upload a jar from a third
party, you have to make a jar with three contents:
- the jar file you want to upload
- the license the jar is under (LICENSE.TXT)
- project.xml, with that minimal information to make a more documented repo

regards

On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> I don't understand
http://maven.apache.org/reference/repository-upload.html.
> http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
>
> Where does the project.xml come from? Do I create a new empty project with
> maven genapp? Or does maven create it? OR do I create it with emacs? It
does
> not make sense to use my current project.
>
> OK, so I tried "maven create-upload-bundle" in an empty temp directory.
> Maven only created a "target" directory contain a bunch of empty
directories
> and no jar file. http://maven.apache.org/reference/repository-upload.html
> explained that it would create a jar file -- it did not.
>
> I'm confused.
>
> Thanks,
> Siegfried
>
> -----Original Message-----
> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> Sent: Tuesday, October 18, 2005 10:41 PM
> To: 'Maven Users List'
> Subject: RE: How to add html parser dependency?
>
> Yes this is the faster solution.
> You can also follow the instructions given in [1] to upload it to ibiblio.
>
> [1] http://maven.apache.org/reference/repository-upload.html
>
> Arnaud
>
>
> > -----Message d'origine-----
> > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > Envoyé : mercredi 19 octobre 2005 06:13
> > À : 'Maven Users List'
> > Objet : How to add html parser dependency?
> >
> > I'm looking for an HTML parser. I heard that
> > http://java-source.net/open-source/html-parsers/html-parser
> > is good. How do I add that to my maven 1 project? I don't see
> > this in the mevenide repository browser. Do I have to
> > manually download it and stick it in my local maven repository?
> >
> > Sieg
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
Where do I get the license.txt? http://htmlparser.sourceforge.net/ does not
have a LICENSE.TXT. 
Thanks,
sieg

-----Original Message-----
From: carlossg@gmail.com [mailto:carlossg@gmail.com] On Behalf Of Carlos
Sanchez
Sent: Wednesday, October 19, 2005 3:45 PM
To: Maven Users List
Subject: Re: How to add html parser dependency?

Hi,

"maven create-upload-bundle" is to create a upload bundle from an
existing maven project. If you want to upload a jar from a third
party, you have to make a jar with three contents:
- the jar file you want to upload
- the license the jar is under (LICENSE.TXT)
- project.xml, with that minimal information to make a more documented repo

regards

On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> I don't understand
http://maven.apache.org/reference/repository-upload.html.
> http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
>
> Where does the project.xml come from? Do I create a new empty project with
> maven genapp? Or does maven create it? OR do I create it with emacs? It
does
> not make sense to use my current project.
>
> OK, so I tried "maven create-upload-bundle" in an empty temp directory.
> Maven only created a "target" directory contain a bunch of empty
directories
> and no jar file. http://maven.apache.org/reference/repository-upload.html
> explained that it would create a jar file -- it did not.
>
> I'm confused.
>
> Thanks,
> Siegfried
>
> -----Original Message-----
> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> Sent: Tuesday, October 18, 2005 10:41 PM
> To: 'Maven Users List'
> Subject: RE: How to add html parser dependency?
>
> Yes this is the faster solution.
> You can also follow the instructions given in [1] to upload it to ibiblio.
>
> [1] http://maven.apache.org/reference/repository-upload.html
>
> Arnaud
>
>
> > -----Message d'origine-----
> > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > Envoyé : mercredi 19 octobre 2005 06:13
> > À : 'Maven Users List'
> > Objet : How to add html parser dependency?
> >
> > I'm looking for an HTML parser. I heard that
> > http://java-source.net/open-source/html-parsers/html-parser
> > is good. How do I add that to my maven 1 project? I don't see
> > this in the mevenide repository browser. Do I have to
> > manually download it and stick it in my local maven repository?
> >
> > Sieg
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: How to add html parser dependency?

Posted by Carlos Sanchez <ca...@apache.org>.
Hi,

"maven create-upload-bundle" is to create a upload bundle from an
existing maven project. If you want to upload a jar from a third
party, you have to make a jar with three contents:
- the jar file you want to upload
- the license the jar is under (LICENSE.TXT)
- project.xml, with that minimal information to make a more documented repo

regards

On 10/18/05, Siegfried Heintze <si...@heintze.com> wrote:
> I don't understand http://maven.apache.org/reference/repository-upload.html.
> http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
>
> Where does the project.xml come from? Do I create a new empty project with
> maven genapp? Or does maven create it? OR do I create it with emacs? It does
> not make sense to use my current project.
>
> OK, so I tried "maven create-upload-bundle" in an empty temp directory.
> Maven only created a "target" directory contain a bunch of empty directories
> and no jar file. http://maven.apache.org/reference/repository-upload.html
> explained that it would create a jar file -- it did not.
>
> I'm confused.
>
> Thanks,
> Siegfried
>
> -----Original Message-----
> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> Sent: Tuesday, October 18, 2005 10:41 PM
> To: 'Maven Users List'
> Subject: RE: How to add html parser dependency?
>
> Yes this is the faster solution.
> You can also follow the instructions given in [1] to upload it to ibiblio.
>
> [1] http://maven.apache.org/reference/repository-upload.html
>
> Arnaud
>
>
> > -----Message d'origine-----
> > De : Siegfried Heintze [mailto:siegfried@heintze.com]
> > Envoyé : mercredi 19 octobre 2005 06:13
> > À : 'Maven Users List'
> > Objet : How to add html parser dependency?
> >
> > I'm looking for an HTML parser. I heard that
> > http://java-source.net/open-source/html-parsers/html-parser
> > is good. How do I add that to my maven 1 project? I don't see
> > this in the mevenide repository browser. Do I have to
> > manually download it and stick it in my local maven repository?
> >
> > Sieg
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Arnaud HERITIER <ah...@gmail.com>.
I'm not an expert with this procedure.
Carlos, can you help ?


Arnaud

> -----Message d'origine-----
> De : Siegfried Heintze [mailto:siegfried@heintze.com] 
> Envoyé : mercredi 19 octobre 2005 07:34
> À : 'Maven Users List'
> Objet : RE: How to add html parser dependency?
> 
> I don't understand 
> http://maven.apache.org/reference/repository-upload.html.
> http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.
> 
> Where does the project.xml come from? Do I create a new empty 
> project with maven genapp? Or does maven create it? OR do I 
> create it with emacs? It does not make sense to use my 
> current project.
> 
> OK, so I tried "maven create-upload-bundle" in an empty temp 
> directory.
> Maven only created a "target" directory contain a bunch of 
> empty directories and no jar file. 
> http://maven.apache.org/reference/repository-upload.html
> explained that it would create a jar file -- it did not.
> 
> I'm confused.
> 
> Thanks,
> Siegfried
> 
> -----Original Message-----
> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> Sent: Tuesday, October 18, 2005 10:41 PM
> To: 'Maven Users List'
> Subject: RE: How to add html parser dependency?
> 
> Yes this is the faster solution.
> You can also follow the instructions given in [1] to upload 
> it to ibiblio.
> 
> [1] http://maven.apache.org/reference/repository-upload.html
> 
> Arnaud
>  
> 
> > -----Message d'origine-----
> > De : Siegfried Heintze [mailto:siegfried@heintze.com] Envoyé : 
> > mercredi 19 octobre 2005 06:13 À : 'Maven Users List'
> > Objet : How to add html parser dependency?
> > 
> > I'm looking for an HTML parser. I heard that 
> > http://java-source.net/open-source/html-parsers/html-parser
> > is good. How do I add that to my maven 1 project? I don't 
> see this in 
> > the mevenide repository browser. Do I have to manually 
> download it and 
> > stick it in my local maven repository?
> > 
> > Sieg
> > 
> > 
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> > 
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
I don't understand http://maven.apache.org/reference/repository-upload.html.
http://htmlparser.sourceforge.net/ does not have a LICENSE.TXT.

Where does the project.xml come from? Do I create a new empty project with
maven genapp? Or does maven create it? OR do I create it with emacs? It does
not make sense to use my current project.

OK, so I tried "maven create-upload-bundle" in an empty temp directory.
Maven only created a "target" directory contain a bunch of empty directories
and no jar file. http://maven.apache.org/reference/repository-upload.html
explained that it would create a jar file -- it did not.

I'm confused.

Thanks,
Siegfried

-----Original Message-----
From: Arnaud HERITIER [mailto:aheritier@gmail.com] 
Sent: Tuesday, October 18, 2005 10:41 PM
To: 'Maven Users List'
Subject: RE: How to add html parser dependency?

Yes this is the faster solution.
You can also follow the instructions given in [1] to upload it to ibiblio.

[1] http://maven.apache.org/reference/repository-upload.html

Arnaud
 

> -----Message d'origine-----
> De : Siegfried Heintze [mailto:siegfried@heintze.com] 
> Envoyé : mercredi 19 octobre 2005 06:13
> À : 'Maven Users List'
> Objet : How to add html parser dependency?
> 
> I'm looking for an HTML parser. I heard that 
> http://java-source.net/open-source/html-parsers/html-parser 
> is good. How do I add that to my maven 1 project? I don't see 
> this in the mevenide repository browser. Do I have to 
> manually download it and stick it in my local maven repository?
> 
> Sieg
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: How to add html parser dependency?

Posted by Arnaud HERITIER <ah...@gmail.com>.
Yes this is the faster solution.
You can also follow the instructions given in [1] to upload it to ibiblio.

[1] http://maven.apache.org/reference/repository-upload.html

Arnaud
 

> -----Message d'origine-----
> De : Siegfried Heintze [mailto:siegfried@heintze.com] 
> Envoyé : mercredi 19 octobre 2005 06:13
> À : 'Maven Users List'
> Objet : How to add html parser dependency?
> 
> I'm looking for an HTML parser. I heard that 
> http://java-source.net/open-source/html-parsers/html-parser 
> is good. How do I add that to my maven 1 project? I don't see 
> this in the mevenide repository browser. Do I have to 
> manually download it and stick it in my local maven repository?
> 
> Sieg
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


How to add html parser dependency?

Posted by Siegfried Heintze <si...@heintze.com>.
I'm looking for an HTML parser. I heard that
http://java-source.net/open-source/html-parsers/html-parser is good. How do
I add that to my maven 1 project? I don't see this in the mevenide
repository browser. Do I have to manually download it and stick it in my
local maven repository?

Sieg


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Plugins of plugins

Posted by Jason van Zyl <ja...@maven.org>.
On Tue, 2005-10-18 at 22:00 -0500, Chris Berry wrote:
> Greetings,
> Is it possible to write a "plugin of plugins"?? I.e. a plugin that is simply
> a composite of other plugins.
> 
> To make this concrete, imagine that you have a common set of plugins that
> are used across many projects -- together forming a common build system. For
> example, in project A you have
> 
> <plugins.
> <plugin/> ..... plugin X at phase 1
> <plugin/> ..... plugin Y at phase 5
> <plugin/> ..... plugin Z at phase 7
> <plugins>

Do you have a concrete example which may help me understand what you're
trying to do before I respond. Looks like you're trying to provide
solution before we know what you're really trying to do.

-- 
jvz.

Jason van Zyl
jason at maven.org
http://maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org