You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by David Wilkinson <dr...@iquo.co.uk> on 2007/03/13 18:13:57 UTC

Maven2 Repository with the javax jars

Hi  

 

I'm new to using maven and I'm trying to set up a build for a j2ee project,
where can I find a repository that holds the javax jars such as the ones for
javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
that there is meta data for these jars but the jars themselves are not there
can anyone help.

 

Thanks in advance

 

David Wilkinson


Re: Maven2 Repository with the javax jars

Posted by Carlos Sanchez <ca...@apache.org>.
contributions are welcome!

On 3/13/07, Thierry Lach <th...@gmail.com> wrote:
> I think that page should be updated to at least mention the two
> dev.java.netrepositories.
>
> On 3/13/07, Carlos Sanchez <ca...@apache.org> wrote:
> >
> > http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html
> >
> > On 3/13/07, David Wilkinson <dr...@iquo.co.uk> wrote:
> > > Hi
> > >
> > >
> > >
> > > I'm new to using maven and I'm trying to set up a build for a j2ee
> > project,
> > > where can I find a repository that holds the javax jars such as the ones
> > for
> > > javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
> > > that there is meta data for these jars but the jars themselves are not
> > there
> > > can anyone help.
> > >
> > >
> > >
> > > Thanks in advance
> > >
> > >
> > >
> > > David Wilkinson
> > >
> > >
> >
> >
> > --
> > I could give you my word as a Spaniard.
> > No good. I've known too many Spaniards.
> >                              -- The Princess Bride
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>


-- 
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
                             -- The Princess Bride

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


Re: Maven2 Repository with the javax jars

Posted by Thierry Lach <th...@gmail.com>.
I think that page should be updated to at least mention the two
dev.java.netrepositories.

On 3/13/07, Carlos Sanchez <ca...@apache.org> wrote:
>
> http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html
>
> On 3/13/07, David Wilkinson <dr...@iquo.co.uk> wrote:
> > Hi
> >
> >
> >
> > I'm new to using maven and I'm trying to set up a build for a j2ee
> project,
> > where can I find a repository that holds the javax jars such as the ones
> for
> > javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
> > that there is meta data for these jars but the jars themselves are not
> there
> > can anyone help.
> >
> >
> >
> > Thanks in advance
> >
> >
> >
> > David Wilkinson
> >
> >
>
>
> --
> I could give you my word as a Spaniard.
> No good. I've known too many Spaniards.
>                              -- The Princess Bride
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Maven2 Repository with the javax jars

Posted by Carlos Sanchez <ca...@apache.org>.
http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html

On 3/13/07, David Wilkinson <dr...@iquo.co.uk> wrote:
> Hi
>
>
>
> I'm new to using maven and I'm trying to set up a build for a j2ee project,
> where can I find a repository that holds the javax jars such as the ones for
> javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
> that there is meta data for these jars but the jars themselves are not there
> can anyone help.
>
>
>
> Thanks in advance
>
>
>
> David Wilkinson
>
>


-- 
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
                             -- The Princess Bride

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


Re: Maven2 Repository with the javax jars

Posted by Thierry Lach <th...@gmail.com>.
Read the following web pages.  Not sure if the jars you want will be there,
but...

Maven 1 repository:  https://maven-repository.dev.java.net/
Maven 2 repository:  https://maven2-repository.dev.java.net/

On 3/13/07, David Wilkinson <dr...@iquo.co.uk> wrote:
>
> Hi
>
>
>
> I'm new to using maven and I'm trying to set up a build for a j2ee
> project,
> where can I find a repository that holds the javax jars such as the ones
> for
> javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
> that there is meta data for these jars but the jars themselves are not
> there
> can anyone help.
>
>
>
> Thanks in advance
>
>
>
> David Wilkinson
>
>

Re: Maven2 Repository with the javax jars

Posted by Wayne Fay <wa...@gmail.com>.
> I looked into these repositories (http://download.java.net/maven/2/javax/)
> but did not find the jar for javax.ejb. Does anyone know a public Maven 2
> repo where I can find it? Would be even better If it also has the sources.

Try the Geronimo spec jars:
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-ejb_3.0_spec</artifactId>
            <version>1.0</version>
        </dependency>

Or look for something out of Project Glassfish.

Wayne

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


Re: Maven2 Repository with the javax jars

Posted by Fabricio Lemos <fa...@gmail.com>.
I looked into these repositories (http://download.java.net/maven/2/javax/)
but did not find the jar for javax.ejb. Does anyone know a public Maven 2
repo where I can find it? Would be even better If it also has the sources.

thanks in advance,
Fabrício Lemos

On Wed, Mar 14, 2007 at 6:23 AM, David Wilkinson <dr...@iquo.co.uk> wrote:

> Hi all
>
> Thanks for the help that gives me some things to look into
>
> Regards
>
> David Wilkinson
>
> -----Original Message-----
> From: Ryan Cuprak [mailto:rcuprak@mac.com]
> Sent: 13 March 2007 17:40
> To: Maven Users List
> Subject: Re: Maven2 Repository with the javax jars
>
>
>  Checkout: https://maven-repository.dev.java.net/
>
>  Regards,
>  -Ryan
>
> On Tuesday, March 13, 2007, at 10:14AM, "David Wilkinson" <draw@iquo.co.uk
> >
> wrote:
> >Hi
> >
> >
> >
> >I'm new to using maven and I'm trying to set up a build for a j2ee
> project,
> >where can I find a repository that holds the javax jars such as the ones
> for
> >javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
> >that there is meta data for these jars but the jars themselves are not
> there
> >can anyone help.
> >
> >
> >
> >Thanks in advance
> >
> >
> >
> >David Wilkinson
> >
> >
>
> ---------------------------------------------------------------------
> 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: Maven2 Repository with the javax jars

Posted by David Wilkinson <dr...@iquo.co.uk>.
Hi all

Thanks for the help that gives me some things to look into

Regards

David Wilkinson

-----Original Message-----
From: Ryan Cuprak [mailto:rcuprak@mac.com] 
Sent: 13 March 2007 17:40
To: Maven Users List
Subject: Re: Maven2 Repository with the javax jars


 Checkout: https://maven-repository.dev.java.net/

 Regards,
 -Ryan
 
On Tuesday, March 13, 2007, at 10:14AM, "David Wilkinson" <dr...@iquo.co.uk>
wrote:
>Hi  
>
> 
>
>I'm new to using maven and I'm trying to set up a build for a j2ee project,
>where can I find a repository that holds the javax jars such as the ones
for
>javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
>that there is meta data for these jars but the jars themselves are not
there
>can anyone help.
>
> 
>
>Thanks in advance
>
> 
>
>David Wilkinson
>
>

---------------------------------------------------------------------
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: Maven2 Repository with the javax jars

Posted by Ryan Cuprak <rc...@mac.com>.
 Checkout: https://maven-repository.dev.java.net/

 Regards,
 -Ryan
 
On Tuesday, March 13, 2007, at 10:14AM, "David Wilkinson" <dr...@iquo.co.uk> wrote:
>Hi  
>
> 
>
>I'm new to using maven and I'm trying to set up a build for a j2ee project,
>where can I find a repository that holds the javax jars such as the ones for
>javax.ejb. I have seen in the main repo (http://repo1.maven.org/maven2/)
>that there is meta data for these jars but the jars themselves are not there
>can anyone help.
>
> 
>
>Thanks in advance
>
> 
>
>David Wilkinson
>
>

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