You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Andrew Birchall <an...@gmail.com> on 2006/09/04 02:04:07 UTC

problem downloading dependencies

Hello I am using Maven 1.0.2 for a project and I'm having a problem
downloading a few of the artifacts (jar files) that the project uses.
I have declared them in project.xml with all the right attributes. For
example, for the Bouncy Castle crytography library:

<dependency>
   <groupId>bouncycastle</groupId>
   <id>bcprov-jdk14</id>
   <version>124</version>
   <url> http://www.bouncycastle.org/download/</url>
   <properties>
   <war.bundle>true</war.bundle>
   <shippable>true</shippable>
   </properties>
</dependency>

But bcprov-jdk14-124.jar fails to download, even though it is there in
Ibiblio:
http://www.ibiblio.org/maven/bouncycastle/jars/
and on the bouncycastle website
http://www.bouncycastle.org/download/

I have also set:
maven.repo.remote=http://www.ibiblio.org/maven
in project.properties

There about 14 other jars that aren't downloaded and I can't figure out why.
Can anyone help?
Thanks
Andy Birchall

Re: problem downloading dependencies

Posted by Andrew Birchall <an...@gmail.com>.
Thanks but the dependecies that are failing fail every time I run the
build (and I've run it many, many times).

On 04/09/06, Alexander Sack <pi...@gmail.com> wrote:
> I've noticed this that occasionally the connection drops or it can't
> download a dependency for a split second and then when I retry it works
> (this is using the default ibiblio repo- my guess is usage of the server).
>
> -aps
>
>
> On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> >
> > Hi thanks for the pointer, but I'm not sure I need a Proxy. Why would
> > I need one?
> > In any case I dont have one..... I am doing this from home and just
> > have a standard cable internet connection. Also, why would some jars
> > succeed in downloading from ibiblio and others not?
> > Cheers
> > Andy
> >
> > On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> > >
> > http://maven.apache.org/maven-1.x/reference/properties.html#Proxy_Properties
> > >
> > > cheers
> > >
> > > arnaud
> > >
> > > On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> > > >
> > > > Hi
> > > > I tried replacing <id> with <artifactId> but it made no difference.
> > > > I didn't know I had to set up a proxy to access ibiblio. There is
> > > > nothing in the documentation about that How do you do it?
> > > > Thanks a lot
> > > > Andy
> > > >
> > > > On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> > > > > Don't you have a proxy to access to ibiblio ?
> > > > >
> > > > > Did you try to replace id (deprecated) by artifactId
> > > > > <dependency>
> > > > >   <groupId>bouncycastle</groupId>
> > > > >   <artifactId>bcprov-jdk14</artifactId>
> > > > >   <version>124</version>
> > > > >   <url> http://www.bouncycastle.org/download/</url>
> > > > >   <properties>
> > > > >   <war.bundle>true</war.bundle>
> > > > >   <shippable>true</shippable>
> > > > >   </properties>
> > > > > </dependency>
> > > > >
> > > > > Arnaud
> > > > >
> > > > > On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> > > > > >
> > > > > > Hello I am using Maven 1.0.2 for a project and I'm having a
> > problem
> > > > > > downloading a few of the artifacts (jar files) that the project
> > uses.
> > > > > > I have declared them in project.xml with all the right attributes.
> > For
> > > > > > example, for the Bouncy Castle crytography library:
> > > > > >
> > > > > > <dependency>
> > > > > >    <groupId>bouncycastle</groupId>
> > > > > >    <id>bcprov-jdk14</id>
> > > > > >    <version>124</version>
> > > > > >    <url> http://www.bouncycastle.org/download/</url>
> > > > > >    <properties>
> > > > > >    <war.bundle>true</war.bundle>
> > > > > >    <shippable>true</shippable>
> > > > > >    </properties>
> > > > > > </dependency>
> > > > > >
> > > > > > But bcprov-jdk14-124.jar fails to download, even though it is
> > there in
> > > > > > Ibiblio:
> > > > > > http://www.ibiblio.org/maven/bouncycastle/jars/
> > > > > > and on the bouncycastle website
> > > > > > http://www.bouncycastle.org/download/
> > > > > >
> > > > > > I have also set:
> > > > > > maven.repo.remote=http://www.ibiblio.org/maven
> > > > > > in project.properties
> > > > > >
> > > > > > There about 14 other jars that aren't downloaded and I can't
> > figure
> > > > out
> > > > > > why.
> > > > > > Can anyone help?
> > > > > > Thanks
> > > > > > Andy Birchall
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > 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
> >
> >
>
>
> --
> "What lies behind us and what lies in front of us is of little concern to
> what lies within us." -Ralph Waldo Emerson
>
>

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


Re: problem downloading dependencies

Posted by Alexander Sack <pi...@gmail.com>.
I've noticed this that occasionally the connection drops or it can't
download a dependency for a split second and then when I retry it works
(this is using the default ibiblio repo- my guess is usage of the server).

-aps


On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
>
> Hi thanks for the pointer, but I'm not sure I need a Proxy. Why would
> I need one?
> In any case I dont have one..... I am doing this from home and just
> have a standard cable internet connection. Also, why would some jars
> succeed in downloading from ibiblio and others not?
> Cheers
> Andy
>
> On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> >
> http://maven.apache.org/maven-1.x/reference/properties.html#Proxy_Properties
> >
> > cheers
> >
> > arnaud
> >
> > On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> > >
> > > Hi
> > > I tried replacing <id> with <artifactId> but it made no difference.
> > > I didn't know I had to set up a proxy to access ibiblio. There is
> > > nothing in the documentation about that How do you do it?
> > > Thanks a lot
> > > Andy
> > >
> > > On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> > > > Don't you have a proxy to access to ibiblio ?
> > > >
> > > > Did you try to replace id (deprecated) by artifactId
> > > > <dependency>
> > > >   <groupId>bouncycastle</groupId>
> > > >   <artifactId>bcprov-jdk14</artifactId>
> > > >   <version>124</version>
> > > >   <url> http://www.bouncycastle.org/download/</url>
> > > >   <properties>
> > > >   <war.bundle>true</war.bundle>
> > > >   <shippable>true</shippable>
> > > >   </properties>
> > > > </dependency>
> > > >
> > > > Arnaud
> > > >
> > > > On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> > > > >
> > > > > Hello I am using Maven 1.0.2 for a project and I'm having a
> problem
> > > > > downloading a few of the artifacts (jar files) that the project
> uses.
> > > > > I have declared them in project.xml with all the right attributes.
> For
> > > > > example, for the Bouncy Castle crytography library:
> > > > >
> > > > > <dependency>
> > > > >    <groupId>bouncycastle</groupId>
> > > > >    <id>bcprov-jdk14</id>
> > > > >    <version>124</version>
> > > > >    <url> http://www.bouncycastle.org/download/</url>
> > > > >    <properties>
> > > > >    <war.bundle>true</war.bundle>
> > > > >    <shippable>true</shippable>
> > > > >    </properties>
> > > > > </dependency>
> > > > >
> > > > > But bcprov-jdk14-124.jar fails to download, even though it is
> there in
> > > > > Ibiblio:
> > > > > http://www.ibiblio.org/maven/bouncycastle/jars/
> > > > > and on the bouncycastle website
> > > > > http://www.bouncycastle.org/download/
> > > > >
> > > > > I have also set:
> > > > > maven.repo.remote=http://www.ibiblio.org/maven
> > > > > in project.properties
> > > > >
> > > > > There about 14 other jars that aren't downloaded and I can't
> figure
> > > out
> > > > > why.
> > > > > Can anyone help?
> > > > > Thanks
> > > > > Andy Birchall
> > > > >
> > > > >
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > 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
>
>


-- 
"What lies behind us and what lies in front of us is of little concern to
what lies within us." -Ralph Waldo Emerson

Re: problem downloading dependencies

Posted by Andrew Birchall <an...@gmail.com>.
Hi thanks for the pointer, but I'm not sure I need a Proxy. Why would
I need one?
In any case I dont have one..... I am doing this from home and just
have a standard cable internet connection. Also, why would some jars
succeed in downloading from ibiblio and others not?
Cheers
Andy

On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> http://maven.apache.org/maven-1.x/reference/properties.html#Proxy_Properties
>
> cheers
>
> arnaud
>
> On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> >
> > Hi
> > I tried replacing <id> with <artifactId> but it made no difference.
> > I didn't know I had to set up a proxy to access ibiblio. There is
> > nothing in the documentation about that How do you do it?
> > Thanks a lot
> > Andy
> >
> > On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> > > Don't you have a proxy to access to ibiblio ?
> > >
> > > Did you try to replace id (deprecated) by artifactId
> > > <dependency>
> > >   <groupId>bouncycastle</groupId>
> > >   <artifactId>bcprov-jdk14</artifactId>
> > >   <version>124</version>
> > >   <url> http://www.bouncycastle.org/download/</url>
> > >   <properties>
> > >   <war.bundle>true</war.bundle>
> > >   <shippable>true</shippable>
> > >   </properties>
> > > </dependency>
> > >
> > > Arnaud
> > >
> > > On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> > > >
> > > > Hello I am using Maven 1.0.2 for a project and I'm having a problem
> > > > downloading a few of the artifacts (jar files) that the project uses.
> > > > I have declared them in project.xml with all the right attributes. For
> > > > example, for the Bouncy Castle crytography library:
> > > >
> > > > <dependency>
> > > >    <groupId>bouncycastle</groupId>
> > > >    <id>bcprov-jdk14</id>
> > > >    <version>124</version>
> > > >    <url> http://www.bouncycastle.org/download/</url>
> > > >    <properties>
> > > >    <war.bundle>true</war.bundle>
> > > >    <shippable>true</shippable>
> > > >    </properties>
> > > > </dependency>
> > > >
> > > > But bcprov-jdk14-124.jar fails to download, even though it is there in
> > > > Ibiblio:
> > > > http://www.ibiblio.org/maven/bouncycastle/jars/
> > > > and on the bouncycastle website
> > > > http://www.bouncycastle.org/download/
> > > >
> > > > I have also set:
> > > > maven.repo.remote=http://www.ibiblio.org/maven
> > > > in project.properties
> > > >
> > > > There about 14 other jars that aren't downloaded and I can't figure
> > out
> > > > why.
> > > > Can anyone help?
> > > > Thanks
> > > > Andy Birchall
> > > >
> > > >
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > 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: problem downloading dependencies

Posted by Arnaud HERITIER <ah...@gmail.com>.
http://maven.apache.org/maven-1.x/reference/properties.html#Proxy_Properties

cheers

arnaud

On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
>
> Hi
> I tried replacing <id> with <artifactId> but it made no difference.
> I didn't know I had to set up a proxy to access ibiblio. There is
> nothing in the documentation about that How do you do it?
> Thanks a lot
> Andy
>
> On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> > Don't you have a proxy to access to ibiblio ?
> >
> > Did you try to replace id (deprecated) by artifactId
> > <dependency>
> >   <groupId>bouncycastle</groupId>
> >   <artifactId>bcprov-jdk14</artifactId>
> >   <version>124</version>
> >   <url> http://www.bouncycastle.org/download/</url>
> >   <properties>
> >   <war.bundle>true</war.bundle>
> >   <shippable>true</shippable>
> >   </properties>
> > </dependency>
> >
> > Arnaud
> >
> > On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> > >
> > > Hello I am using Maven 1.0.2 for a project and I'm having a problem
> > > downloading a few of the artifacts (jar files) that the project uses.
> > > I have declared them in project.xml with all the right attributes. For
> > > example, for the Bouncy Castle crytography library:
> > >
> > > <dependency>
> > >    <groupId>bouncycastle</groupId>
> > >    <id>bcprov-jdk14</id>
> > >    <version>124</version>
> > >    <url> http://www.bouncycastle.org/download/</url>
> > >    <properties>
> > >    <war.bundle>true</war.bundle>
> > >    <shippable>true</shippable>
> > >    </properties>
> > > </dependency>
> > >
> > > But bcprov-jdk14-124.jar fails to download, even though it is there in
> > > Ibiblio:
> > > http://www.ibiblio.org/maven/bouncycastle/jars/
> > > and on the bouncycastle website
> > > http://www.bouncycastle.org/download/
> > >
> > > I have also set:
> > > maven.repo.remote=http://www.ibiblio.org/maven
> > > in project.properties
> > >
> > > There about 14 other jars that aren't downloaded and I can't figure
> out
> > > why.
> > > Can anyone help?
> > > Thanks
> > > Andy Birchall
> > >
> > >
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: problem downloading dependencies

Posted by Andrew Birchall <an...@gmail.com>.
Hi
I tried replacing <id> with <artifactId> but it made no difference.
I didn't know I had to set up a proxy to access ibiblio. There is
nothing in the documentation about that How do you do it?
Thanks a lot
Andy

On 04/09/06, Arnaud HERITIER <ah...@gmail.com> wrote:
> Don't you have a proxy to access to ibiblio ?
>
> Did you try to replace id (deprecated) by artifactId
> <dependency>
>   <groupId>bouncycastle</groupId>
>   <artifactId>bcprov-jdk14</artifactId>
>   <version>124</version>
>   <url> http://www.bouncycastle.org/download/</url>
>   <properties>
>   <war.bundle>true</war.bundle>
>   <shippable>true</shippable>
>   </properties>
> </dependency>
>
> Arnaud
>
> On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
> >
> > Hello I am using Maven 1.0.2 for a project and I'm having a problem
> > downloading a few of the artifacts (jar files) that the project uses.
> > I have declared them in project.xml with all the right attributes. For
> > example, for the Bouncy Castle crytography library:
> >
> > <dependency>
> >    <groupId>bouncycastle</groupId>
> >    <id>bcprov-jdk14</id>
> >    <version>124</version>
> >    <url> http://www.bouncycastle.org/download/</url>
> >    <properties>
> >    <war.bundle>true</war.bundle>
> >    <shippable>true</shippable>
> >    </properties>
> > </dependency>
> >
> > But bcprov-jdk14-124.jar fails to download, even though it is there in
> > Ibiblio:
> > http://www.ibiblio.org/maven/bouncycastle/jars/
> > and on the bouncycastle website
> > http://www.bouncycastle.org/download/
> >
> > I have also set:
> > maven.repo.remote=http://www.ibiblio.org/maven
> > in project.properties
> >
> > There about 14 other jars that aren't downloaded and I can't figure out
> > why.
> > Can anyone help?
> > Thanks
> > Andy Birchall
> >
> >
>
>

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


Re: problem downloading dependencies

Posted by Arnaud HERITIER <ah...@gmail.com>.
Don't you have a proxy to access to ibiblio ?

Did you try to replace id (deprecated) by artifactId
<dependency>
   <groupId>bouncycastle</groupId>
   <artifactId>bcprov-jdk14</artifactId>
   <version>124</version>
   <url> http://www.bouncycastle.org/download/</url>
   <properties>
   <war.bundle>true</war.bundle>
   <shippable>true</shippable>
   </properties>
</dependency>

Arnaud

On 9/4/06, Andrew Birchall <an...@gmail.com> wrote:
>
> Hello I am using Maven 1.0.2 for a project and I'm having a problem
> downloading a few of the artifacts (jar files) that the project uses.
> I have declared them in project.xml with all the right attributes. For
> example, for the Bouncy Castle crytography library:
>
> <dependency>
>    <groupId>bouncycastle</groupId>
>    <id>bcprov-jdk14</id>
>    <version>124</version>
>    <url> http://www.bouncycastle.org/download/</url>
>    <properties>
>    <war.bundle>true</war.bundle>
>    <shippable>true</shippable>
>    </properties>
> </dependency>
>
> But bcprov-jdk14-124.jar fails to download, even though it is there in
> Ibiblio:
> http://www.ibiblio.org/maven/bouncycastle/jars/
> and on the bouncycastle website
> http://www.bouncycastle.org/download/
>
> I have also set:
> maven.repo.remote=http://www.ibiblio.org/maven
> in project.properties
>
> There about 14 other jars that aren't downloaded and I can't figure out
> why.
> Can anyone help?
> Thanks
> Andy Birchall
>
>