You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Dave Brondsema <da...@brondsema.net> on 2005/10/10 16:31:46 UTC

[m2] jsf-api pom without jar?

The repository has a jsf-api pom but no jar at
http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/

I guess I am supposed to specify whether to use the api jar provided by
Sun's RI or by MyFaces.  How do I do that?

-- 
Dave Brondsema
Software Developer
Cornerstone University

Re: [m2] jsf-api pom without jar?

Posted by Stephen Duncan <st...@gmail.com>.
MyFaces jar files are in the repository:

http://www.ibiblio.org/maven2/myfaces/myfaces-api/1.1.0/

-Stephen

On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
> Thanks!  Sounds like I should create an issue for adding the MyFaces api
>  jar.
>
> Yann Le Du wrote:
> > SUN JARs are not in IBiblio because of license issues.
> >
> > You must :
> > 1. Download yourself the jar
> > 2. Install it with :
> > m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=javax.faces
> > -DgroupId=jsf-api -Dversion=1.1
> >
> > For more info, please see :
> > http://maven.apache.org/reference/standard-sun-jar-names.html
> > http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
> >
> > Regards,
> > Yann
> >
> > --- Dave Brondsema <da...@brondsema.net> a écrit :
> >
> >
> >>The repository has a jsf-api pom but no jar at
> >>http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
> >>
> >>I guess I am supposed to specify whether to use the api jar provided by
> >>Sun's RI or by MyFaces.  How do I do that?
> >>
> >>--
> >>Dave Brondsema
> >>Software Developer
> >>Cornerstone University
> >>
> >
> >
> >
> >
> >
> >
> >
> >
> > ___________________________________________________________________________
> > Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger
> > Téléchargez cette version sur http://fr.messenger.yahoo.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
>
>
> --
> Dave Brondsema
> Software Developer
> Cornerstone University
>
>
>
>


--
Stephen Duncan Jr
www.stephenduncanjr.com

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


Re: [m2] jsf-api pom without jar? (fixing javax depenedencies)

Posted by Trygve Laugstøl <tr...@codehaus.org>.
On Mon, 2005-10-10 at 13:29 -0400, Brian Bonner wrote:
> Check out:
> 
> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.3/
> and
> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.4/
> 
> Sure looks like .jars to me.
> 
> I was just drafting up a post re: a similar topic: 
> 
> Several of the projects in ibiblio refer to the servlet api (2.3 and 
> 2.4).  It's stored in ibiblio as javax.servlet  (I guess this doesn't 
> have the same licensing issues), yet others refer to it under servletapi 
> and another under servlet-api.  What's up with this?  It's stored in 
> ibiblio with this same groupid and artifact:

Because they're not Sun JARs, but rather a re-implementation from Apache
Tomcat.

--
Trygve


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


Re: [m2] jsf-api pom without jar? (fixing javax depenedencies)

Posted by Arik Kfir <ar...@gmail.com>.
It's worth mentioning it in the Maven site as well ;-)

On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
>
> thanks for the clarification. if I could annotate ibiblio with that info
> it might clarify things for future folks.
>
> Brian
>
>
>
> Carlos Sanchez wrote:
> > The servlet api available in ibiblio is implemented by Tomcat, under
> > apache licence, so it can be redistributed. The right groupId (using
> > latest conventions) is javax.servlet
> >
> > On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
> >
> >> Check out:
> >>
> >> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.3/
> >> and
> >> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.4/
> >>
> >> Sure looks like .jars to me.
> >>
> >> I was just drafting up a post re: a similar topic:
> >>
> >> Several of the projects in ibiblio refer to the servlet api (2.3 and
> >> 2.4). It's stored in ibiblio as javax.servlet (I guess this doesn't
> >> have the same licensing issues), yet others refer to it under
> servletapi
> >> and another under servlet-api. What's up with this? It's stored in
> >> ibiblio with this same groupid and artifact:
> >>
> >> http://www.ibiblio.org/maven2/servletapi/servlet-api/2.4/
> >>
> >> and
> >>
> >> http://www.ibiblio.org/maven2/servletapi/servletapi/2.4/
> >> http://www.ibiblio.org/maven2/servletapi/servletapi/2.3/
> >>
> >> Brian
> >>
> >>
> >>
> >> Arik Kfir wrote:
> >>
> >>> umm..not sure actually
> >>>
> >>> According to previous postings in this list, and the policy+license of
> Sun,
> >>> I think they shouldn't. Perhaps someone could correct me on this?
> >>>
> >>> On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
> >>>
> >>>
> >>>> I'm curious why the javax.servlet 2.3 and 2.4 jars are both out
> there.
> >>>> Is it because they're API only?
> >>>>
> >>>> Brian
> >>>>
> >>>>
> >>>>
> >>>> Arik Kfir wrote:
> >>>>
> >>>>
> >>>>> No you shouldn't ;-)
> >>>>> The reason it is not there is because of licensing issues...
> >>>>>
> >>>>> Please read the following link:
> >>>>> http://maven.apache.org/reference/standard-sun-jar-names.html
> >>>>>
> >>>>>
> >>>>> On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
> >>>>>
> >>>>>
> >>>>>
> >>>>>> Thanks! Sounds like I should create an issue for adding the MyFaces
> api
> >>>>>> jar.
> >>>>>>
> >>>>>> Yann Le Du wrote:
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>> SUN JARs are not in IBiblio because of license issues.
> >>>>>>>
> >>>>>>> You must :
> >>>>>>> 1. Download yourself the jar
> >>>>>>> 2. Install it with :
> >>>>>>> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>> javax.faces
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>> -DgroupId=jsf-api -Dversion=1.1
> >>>>>>>
> >>>>>>> For more info, please see :
> >>>>>>> http://maven.apache.org/reference/standard-sun-jar-names.html
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>
> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
> >>>>
> >>>>
> >>>>>>> Regards,
> >>>>>>> Yann
> >>>>>>>
> >>>>>>> --- Dave Brondsema <da...@brondsema.net> a écrit :
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>> The repository has a jsf-api pom but no jar at
> >>>>>>>> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
> >>>>>>>>
> >>>>>>>> I guess I am supposed to specify whether to use the api jar
> provided
> >>>>>>>>
> >>>>>>>>
> >>>> by
> >>>>
> >>>>
> >>>>>>>> Sun's RI or by MyFaces. How do I do that?
> >>>>>>>>
> >>>>>>>> --
> >>>>>>>> Dave Brondsema
> >>>>>>>> Software Developer
> >>>>>>>> Cornerstone University
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>
> ___________________________________________________________________________
> >>>>
> >>>>
> >>>>>>> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>> Messenger
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>> Téléchargez cette version sur http://fr.messenger.yahoo.com
> >>>>>>>
> >>>>>>>
> ---------------------------------------------------------------------
> >>>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>>>>> For additional commands, e-mail: users-help@maven.apache.org
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>> --
> >>>>>> Dave Brondsema
> >>>>>> Software Developer
> >>>>>> Cornerstone University
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>> ---------------------------------------------------------------------
> >>>> 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: [m2] jsf-api pom without jar? (fixing javax depenedencies)

Posted by Brian Bonner <br...@paraware.com>.
thanks for the clarification. if I could annotate ibiblio with that info 
it might clarify things for future folks.

Brian



Carlos Sanchez wrote:
> The servlet api available in ibiblio is implemented by Tomcat, under
> apache licence, so it can be redistributed. The right groupId (using
> latest conventions) is javax.servlet
>
> On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
>   
>> Check out:
>>
>> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.3/
>> and
>> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.4/
>>
>> Sure looks like .jars to me.
>>
>> I was just drafting up a post re: a similar topic:
>>
>> Several of the projects in ibiblio refer to the servlet api (2.3 and
>> 2.4).  It's stored in ibiblio as javax.servlet  (I guess this doesn't
>> have the same licensing issues), yet others refer to it under servletapi
>> and another under servlet-api.  What's up with this?  It's stored in
>> ibiblio with this same groupid and artifact:
>>
>> http://www.ibiblio.org/maven2/servletapi/servlet-api/2.4/
>>
>> and
>>
>> http://www.ibiblio.org/maven2/servletapi/servletapi/2.4/
>> http://www.ibiblio.org/maven2/servletapi/servletapi/2.3/
>>
>> Brian
>>
>>
>>
>> Arik Kfir wrote:
>>     
>>> umm..not sure actually
>>>
>>> According to previous postings in this list, and the policy+license of Sun,
>>> I think they shouldn't. Perhaps someone could correct me on this?
>>>
>>> On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
>>>
>>>       
>>>> I'm curious why the javax.servlet 2.3 and 2.4 jars are both out there.
>>>> Is it because they're API only?
>>>>
>>>> Brian
>>>>
>>>>
>>>>
>>>> Arik Kfir wrote:
>>>>
>>>>         
>>>>> No you shouldn't ;-)
>>>>> The reason it is not there is because of licensing issues...
>>>>>
>>>>> Please read the following link:
>>>>> http://maven.apache.org/reference/standard-sun-jar-names.html
>>>>>
>>>>>
>>>>> On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
>>>>>
>>>>>
>>>>>           
>>>>>> Thanks! Sounds like I should create an issue for adding the MyFaces api
>>>>>> jar.
>>>>>>
>>>>>> Yann Le Du wrote:
>>>>>>
>>>>>>
>>>>>>             
>>>>>>> SUN JARs are not in IBiblio because of license issues.
>>>>>>>
>>>>>>> You must :
>>>>>>> 1. Download yourself the jar
>>>>>>> 2. Install it with :
>>>>>>> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>>> javax.faces
>>>>>>
>>>>>>
>>>>>>             
>>>>>>> -DgroupId=jsf-api -Dversion=1.1
>>>>>>>
>>>>>>> For more info, please see :
>>>>>>> http://maven.apache.org/reference/standard-sun-jar-names.html
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>>> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
>>>>
>>>>         
>>>>>>> Regards,
>>>>>>> Yann
>>>>>>>
>>>>>>> --- Dave Brondsema <da...@brondsema.net> a écrit :
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>>>>> The repository has a jsf-api pom but no jar at
>>>>>>>> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
>>>>>>>>
>>>>>>>> I guess I am supposed to specify whether to use the api jar provided
>>>>>>>>
>>>>>>>>                 
>>>> by
>>>>
>>>>         
>>>>>>>> Sun's RI or by MyFaces. How do I do that?
>>>>>>>>
>>>>>>>> --
>>>>>>>> Dave Brondsema
>>>>>>>> Software Developer
>>>>>>>> Cornerstone University
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>                 
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>>> ___________________________________________________________________________
>>>>
>>>>         
>>>>>>> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>>> Messenger
>>>>>>
>>>>>>
>>>>>>             
>>>>>>> Téléchargez cette version sur http://fr.messenger.yahoo.com
>>>>>>>
>>>>>>> ---------------------------------------------------------------------
>>>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>>> --
>>>>>> Dave Brondsema
>>>>>> Software Developer
>>>>>> Cornerstone University
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>             
>>>> ---------------------------------------------------------------------
>>>> 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: [m2] jsf-api pom without jar? (fixing javax depenedencies)

Posted by Carlos Sanchez <ca...@apache.org>.
The servlet api available in ibiblio is implemented by Tomcat, under
apache licence, so it can be redistributed. The right groupId (using
latest conventions) is javax.servlet

On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
> Check out:
>
> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.3/
> and
> http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.4/
>
> Sure looks like .jars to me.
>
> I was just drafting up a post re: a similar topic:
>
> Several of the projects in ibiblio refer to the servlet api (2.3 and
> 2.4).  It's stored in ibiblio as javax.servlet  (I guess this doesn't
> have the same licensing issues), yet others refer to it under servletapi
> and another under servlet-api.  What's up with this?  It's stored in
> ibiblio with this same groupid and artifact:
>
> http://www.ibiblio.org/maven2/servletapi/servlet-api/2.4/
>
> and
>
> http://www.ibiblio.org/maven2/servletapi/servletapi/2.4/
> http://www.ibiblio.org/maven2/servletapi/servletapi/2.3/
>
> Brian
>
>
>
> Arik Kfir wrote:
> > umm..not sure actually
> >
> > According to previous postings in this list, and the policy+license of Sun,
> > I think they shouldn't. Perhaps someone could correct me on this?
> >
> > On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
> >
> >> I'm curious why the javax.servlet 2.3 and 2.4 jars are both out there.
> >> Is it because they're API only?
> >>
> >> Brian
> >>
> >>
> >>
> >> Arik Kfir wrote:
> >>
> >>> No you shouldn't ;-)
> >>> The reason it is not there is because of licensing issues...
> >>>
> >>> Please read the following link:
> >>> http://maven.apache.org/reference/standard-sun-jar-names.html
> >>>
> >>>
> >>> On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
> >>>
> >>>
> >>>> Thanks! Sounds like I should create an issue for adding the MyFaces api
> >>>> jar.
> >>>>
> >>>> Yann Le Du wrote:
> >>>>
> >>>>
> >>>>> SUN JARs are not in IBiblio because of license issues.
> >>>>>
> >>>>> You must :
> >>>>> 1. Download yourself the jar
> >>>>> 2. Install it with :
> >>>>> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
> >>>>>
> >>>>>
> >>>> javax.faces
> >>>>
> >>>>
> >>>>> -DgroupId=jsf-api -Dversion=1.1
> >>>>>
> >>>>> For more info, please see :
> >>>>> http://maven.apache.org/reference/standard-sun-jar-names.html
> >>>>>
> >>>>>
> >>>>>
> >> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
> >>
> >>>>> Regards,
> >>>>> Yann
> >>>>>
> >>>>> --- Dave Brondsema <da...@brondsema.net> a écrit :
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>> The repository has a jsf-api pom but no jar at
> >>>>>> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
> >>>>>>
> >>>>>> I guess I am supposed to specify whether to use the api jar provided
> >>>>>>
> >> by
> >>
> >>>>>> Sun's RI or by MyFaces. How do I do that?
> >>>>>>
> >>>>>> --
> >>>>>> Dave Brondsema
> >>>>>> Software Developer
> >>>>>> Cornerstone University
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >> ___________________________________________________________________________
> >>
> >>>>> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
> >>>>>
> >>>>>
> >>>> Messenger
> >>>>
> >>>>
> >>>>> Téléchargez cette version sur http://fr.messenger.yahoo.com
> >>>>>
> >>>>> ---------------------------------------------------------------------
> >>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>>> For additional commands, e-mail: users-help@maven.apache.org
> >>>>>
> >>>>>
> >>>>>
> >>>> --
> >>>> Dave Brondsema
> >>>> Software Developer
> >>>> Cornerstone University
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>
> >> ---------------------------------------------------------------------
> >> 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: [m2] jsf-api pom without jar? (fixing javax depenedencies)

Posted by Brian Bonner <br...@paraware.com>.
Check out:

http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.3/
and
http://www.ibiblio.org/maven2/javax/servlet/servlet-api/2.4/

Sure looks like .jars to me.

I was just drafting up a post re: a similar topic: 

Several of the projects in ibiblio refer to the servlet api (2.3 and 
2.4).  It's stored in ibiblio as javax.servlet  (I guess this doesn't 
have the same licensing issues), yet others refer to it under servletapi 
and another under servlet-api.  What's up with this?  It's stored in 
ibiblio with this same groupid and artifact:

http://www.ibiblio.org/maven2/servletapi/servlet-api/2.4/

and

http://www.ibiblio.org/maven2/servletapi/servletapi/2.4/
http://www.ibiblio.org/maven2/servletapi/servletapi/2.3/

Brian



Arik Kfir wrote:
> umm..not sure actually
>
> According to previous postings in this list, and the policy+license of Sun,
> I think they shouldn't. Perhaps someone could correct me on this?
>
> On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
>   
>> I'm curious why the javax.servlet 2.3 and 2.4 jars are both out there.
>> Is it because they're API only?
>>
>> Brian
>>
>>
>>
>> Arik Kfir wrote:
>>     
>>> No you shouldn't ;-)
>>> The reason it is not there is because of licensing issues...
>>>
>>> Please read the following link:
>>> http://maven.apache.org/reference/standard-sun-jar-names.html
>>>
>>>
>>> On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
>>>
>>>       
>>>> Thanks! Sounds like I should create an issue for adding the MyFaces api
>>>> jar.
>>>>
>>>> Yann Le Du wrote:
>>>>
>>>>         
>>>>> SUN JARs are not in IBiblio because of license issues.
>>>>>
>>>>> You must :
>>>>> 1. Download yourself the jar
>>>>> 2. Install it with :
>>>>> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
>>>>>
>>>>>           
>>>> javax.faces
>>>>
>>>>         
>>>>> -DgroupId=jsf-api -Dversion=1.1
>>>>>
>>>>> For more info, please see :
>>>>> http://maven.apache.org/reference/standard-sun-jar-names.html
>>>>>
>>>>>
>>>>>           
>> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
>>     
>>>>> Regards,
>>>>> Yann
>>>>>
>>>>> --- Dave Brondsema <da...@brondsema.net> a écrit :
>>>>>
>>>>>
>>>>>
>>>>>           
>>>>>> The repository has a jsf-api pom but no jar at
>>>>>> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
>>>>>>
>>>>>> I guess I am supposed to specify whether to use the api jar provided
>>>>>>             
>> by
>>     
>>>>>> Sun's RI or by MyFaces. How do I do that?
>>>>>>
>>>>>> --
>>>>>> Dave Brondsema
>>>>>> Software Developer
>>>>>> Cornerstone University
>>>>>>
>>>>>>
>>>>>>             
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>           
>> ___________________________________________________________________________
>>     
>>>>> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
>>>>>
>>>>>           
>>>> Messenger
>>>>
>>>>         
>>>>> Téléchargez cette version sur http://fr.messenger.yahoo.com
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>>>           
>>>> --
>>>> Dave Brondsema
>>>> Software Developer
>>>> Cornerstone University
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>         
>>>       
>> ---------------------------------------------------------------------
>> 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: [m2] jsf-api pom without jar?

Posted by Dave Brondsema <da...@brondsema.net>.
MyFaces has an API jar file which was created independently of Sun and
should be free of licensing concerns.

I'm guessing the other javax.* jar files out there (like servlet and
portlet) are also clean implementations of just the API, from Apache
Tomcat and Pluto probably.

These should all be okay to have in the repository.

Arik Kfir wrote:
> umm..not sure actually
> 
> According to previous postings in this list, and the policy+license of Sun,
> I think they shouldn't. Perhaps someone could correct me on this?
> 
> On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
> 
>>I'm curious why the javax.servlet 2.3 and 2.4 jars are both out there.
>>Is it because they're API only?
>>
>>Brian
>>
>>
>>
>>Arik Kfir wrote:
>>
>>>No you shouldn't ;-)
>>>The reason it is not there is because of licensing issues...
>>>
>>>Please read the following link:
>>>http://maven.apache.org/reference/standard-sun-jar-names.html
>>>
>>>
>>>On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
>>>
>>>
>>>>Thanks! Sounds like I should create an issue for adding the MyFaces api
>>>>jar.
>>>>
>>>>Yann Le Du wrote:
>>>>
>>>>
>>>>>SUN JARs are not in IBiblio because of license issues.
>>>>>
>>>>>You must :
>>>>>1. Download yourself the jar
>>>>>2. Install it with :
>>>>>m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
>>>>>
>>>>
>>>>javax.faces
>>>>
>>>>
>>>>>-DgroupId=jsf-api -Dversion=1.1
>>>>>
>>>>>For more info, please see :
>>>>>http://maven.apache.org/reference/standard-sun-jar-names.html
>>>>>
>>>>>
>>>>
>>http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
>>
>>>>>Regards,
>>>>>Yann
>>>>>
>>>>>--- Dave Brondsema <da...@brondsema.net> a écrit :
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>The repository has a jsf-api pom but no jar at
>>>>>>http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
>>>>>>
>>>>>>I guess I am supposed to specify whether to use the api jar provided
>>
>>by
>>
>>>>>>Sun's RI or by MyFaces. How do I do that?
>>>>>>
>>>>>>--
>>>>>>Dave Brondsema
>>>>>>Software Developer
>>>>>>Cornerstone University
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>___________________________________________________________________________
>>
>>>>>Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
>>>>>
>>>>
>>>>Messenger
>>>>
>>>>
>>>>>Téléchargez cette version sur http://fr.messenger.yahoo.com
>>>>>
>>>>>---------------------------------------------------------------------
>>>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>>For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>>
>>>>--
>>>>Dave Brondsema
>>>>Software Developer
>>>>Cornerstone University
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 


-- 
Dave Brondsema
Software Developer
Cornerstone University


Re: [m2] jsf-api pom without jar?

Posted by Arik Kfir <ar...@gmail.com>.
umm..not sure actually

According to previous postings in this list, and the policy+license of Sun,
I think they shouldn't. Perhaps someone could correct me on this?

On 10/10/05, Brian Bonner <br...@paraware.com> wrote:
>
> I'm curious why the javax.servlet 2.3 and 2.4 jars are both out there.
> Is it because they're API only?
>
> Brian
>
>
>
> Arik Kfir wrote:
> > No you shouldn't ;-)
> > The reason it is not there is because of licensing issues...
> >
> > Please read the following link:
> > http://maven.apache.org/reference/standard-sun-jar-names.html
> >
> >
> > On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
> >
> >> Thanks! Sounds like I should create an issue for adding the MyFaces api
> >> jar.
> >>
> >> Yann Le Du wrote:
> >>
> >>> SUN JARs are not in IBiblio because of license issues.
> >>>
> >>> You must :
> >>> 1. Download yourself the jar
> >>> 2. Install it with :
> >>> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
> >>>
> >> javax.faces
> >>
> >>> -DgroupId=jsf-api -Dversion=1.1
> >>>
> >>> For more info, please see :
> >>> http://maven.apache.org/reference/standard-sun-jar-names.html
> >>>
> >>>
> >>
> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
> >>
> >>> Regards,
> >>> Yann
> >>>
> >>> --- Dave Brondsema <da...@brondsema.net> a écrit :
> >>>
> >>>
> >>>
> >>>> The repository has a jsf-api pom but no jar at
> >>>> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
> >>>>
> >>>> I guess I am supposed to specify whether to use the api jar provided
> by
> >>>> Sun's RI or by MyFaces. How do I do that?
> >>>>
> >>>> --
> >>>> Dave Brondsema
> >>>> Software Developer
> >>>> Cornerstone University
> >>>>
> >>>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>
> ___________________________________________________________________________
> >>
> >>> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
> >>>
> >> Messenger
> >>
> >>> Téléchargez cette version sur http://fr.messenger.yahoo.com
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>> For additional commands, e-mail: users-help@maven.apache.org
> >>>
> >>>
> >> --
> >> Dave Brondsema
> >> Software Developer
> >> Cornerstone University
> >>
> >>
> >>
> >>
> >>
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: [m2] jsf-api pom without jar?

Posted by Brian Bonner <br...@paraware.com>.
I'm curious why the javax.servlet 2.3 and 2.4 jars are both out there.  
Is it because they're API only?

Brian



Arik Kfir wrote:
> No you shouldn't ;-)
> The reason it is not there is because of licensing issues...
>
> Please read the following link:
> http://maven.apache.org/reference/standard-sun-jar-names.html
>
>
> On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
>   
>> Thanks! Sounds like I should create an issue for adding the MyFaces api
>> jar.
>>
>> Yann Le Du wrote:
>>     
>>> SUN JARs are not in IBiblio because of license issues.
>>>
>>> You must :
>>> 1. Download yourself the jar
>>> 2. Install it with :
>>> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
>>>       
>> javax.faces
>>     
>>> -DgroupId=jsf-api -Dversion=1.1
>>>
>>> For more info, please see :
>>> http://maven.apache.org/reference/standard-sun-jar-names.html
>>>
>>>       
>> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
>>     
>>> Regards,
>>> Yann
>>>
>>> --- Dave Brondsema <da...@brondsema.net> a écrit :
>>>
>>>
>>>       
>>>> The repository has a jsf-api pom but no jar at
>>>> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
>>>>
>>>> I guess I am supposed to specify whether to use the api jar provided by
>>>> Sun's RI or by MyFaces. How do I do that?
>>>>
>>>> --
>>>> Dave Brondsema
>>>> Software Developer
>>>> Cornerstone University
>>>>
>>>>         
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>       
>> ___________________________________________________________________________
>>     
>>> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
>>>       
>> Messenger
>>     
>>> Téléchargez cette version sur http://fr.messenger.yahoo.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>       
>> --
>> Dave Brondsema
>> Software Developer
>> Cornerstone University
>>
>>
>>
>>
>>     
>
>   


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


Re: [m2] jsf-api pom without jar?

Posted by Arik Kfir <ar...@gmail.com>.
No you shouldn't ;-)
The reason it is not there is because of licensing issues...

Please read the following link:
http://maven.apache.org/reference/standard-sun-jar-names.html


On 10/10/05, Dave Brondsema <da...@brondsema.net> wrote:
>
> Thanks! Sounds like I should create an issue for adding the MyFaces api
> jar.
>
> Yann Le Du wrote:
> > SUN JARs are not in IBiblio because of license issues.
> >
> > You must :
> > 1. Download yourself the jar
> > 2. Install it with :
> > m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=
> javax.faces
> > -DgroupId=jsf-api -Dversion=1.1
> >
> > For more info, please see :
> > http://maven.apache.org/reference/standard-sun-jar-names.html
> >
> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
> >
> > Regards,
> > Yann
> >
> > --- Dave Brondsema <da...@brondsema.net> a écrit :
> >
> >
> >>The repository has a jsf-api pom but no jar at
> >>http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
> >>
> >>I guess I am supposed to specify whether to use the api jar provided by
> >>Sun's RI or by MyFaces. How do I do that?
> >>
> >>--
> >>Dave Brondsema
> >>Software Developer
> >>Cornerstone University
> >>
> >
> >
> >
> >
> >
> >
> >
> >
> >
> ___________________________________________________________________________
> > Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo!
> Messenger
> > Téléchargez cette version sur http://fr.messenger.yahoo.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
>
>
> --
> Dave Brondsema
> Software Developer
> Cornerstone University
>
>
>
>

Re: [m2] jsf-api pom without jar?

Posted by Dave Brondsema <da...@brondsema.net>.
Thanks!  Sounds like I should create an issue for adding the MyFaces api
 jar.

Yann Le Du wrote:
> SUN JARs are not in IBiblio because of license issues.
> 
> You must :
> 1. Download yourself the jar
> 2. Install it with :
> m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=javax.faces
> -DgroupId=jsf-api -Dversion=1.1
> 
> For more info, please see :
> http://maven.apache.org/reference/standard-sun-jar-names.html
> http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html
> 
> Regards,
> Yann
> 
> --- Dave Brondsema <da...@brondsema.net> a écrit :
> 
> 
>>The repository has a jsf-api pom but no jar at
>>http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
>>
>>I guess I am supposed to specify whether to use the api jar provided by
>>Sun's RI or by MyFaces.  How do I do that?
>>
>>-- 
>>Dave Brondsema
>>Software Developer
>>Cornerstone University
>>
> 
> 
> 
> 
> 	
> 
> 	
> 		
> ___________________________________________________________________________ 
> Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger 
> Téléchargez cette version sur http://fr.messenger.yahoo.com
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 


-- 
Dave Brondsema
Software Developer
Cornerstone University


RE: [m2] jsf-api pom without jar?

Posted by Yann Le Du <le...@yahoo.com>.
SUN JARs are not in IBiblio because of license issues.

You must :
1. Download yourself the jar
2. Install it with :
m2 install:install-file -Dfile=/path/to/jsf-api.jar -DartifactId=javax.faces
-DgroupId=jsf-api -Dversion=1.1

For more info, please see :
http://maven.apache.org/reference/standard-sun-jar-names.html
http://maven.apache.org/maven2/plugins/maven-install-plugin/install-file-mojo.html

Regards,
Yann

--- Dave Brondsema <da...@brondsema.net> a écrit :

> The repository has a jsf-api pom but no jar at
> http://www.ibiblio.org/maven2/javax/faces/jsf-api/1.1/
> 
> I guess I am supposed to specify whether to use the api jar provided by
> Sun's RI or by MyFaces.  How do I do that?
> 
> -- 
> Dave Brondsema
> Software Developer
> Cornerstone University
> 



	

	
		
___________________________________________________________________________ 
Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger 
Téléchargez cette version sur http://fr.messenger.yahoo.com

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