Arnaud:

I can't see the difference between what you and Scott sent me and the one
already in the project.xml
  <dependency>
    <groupId>xdoclet</groupId>
    <artifactId>xjavadoc</artifactId>
    <version>1.0.2</version>
    <url>http://xdoclet.sf.net/</url>
 </dependency>

I replaced the one in project.xml with yours.  I still got the same error.

Yes, I have a proxy and I take care of that by configuring the maven.xml.
Actually, when exec other goal like report, it succeeded. Only when I do
maven java:compile, it stops at downloading the xjavadox.jar.

Now, I can manually download the xjavadox.jar without issue using your url.
The "bad URL" is from the debugging msg generated using -X.

Qin


----------------------------------------------------------------------------------------

This is a PRIVATE message. If you are not the intended recipient, please
delete without copying and kindly advise us by e-mail of the mistake in
delivery. NOTE: Regardless of content, this e-mail shall not operate to
bind CSC to any order or other contract unless pursuant to explicit written
agreement or government initiative expressly permitting the use of e-mail
for such purpose.
----------------------------------------------------------------------------------------




                                                                       
                      "Arnaud                                          
                      HERITIER"                To:      "'Maven Users List'" 
<users@maven.apache.org>
                      <aheritier               cc:                     
                      @gmail.com>              Subject: RE: Newbie Help
                                                                       
                      06/21/05 10:56                                   
                      AM                                               
                      Please respond                                   
                      to "Maven Users                                  
                      List"                                            
                                                                       
                                                                       




You tested with a bad url.
The good one is :
http://www.ibiblio.org/maven/xdoclet/jars/xjavadoc-1.0.2.jar

This is why Scott told you to use this dependency :

 <dependency>
    <groupId>xdoclet</groupId>
    <artifactId>xjavadoc</artifactId>
    <version>1.0.2</version>
    <url>http://xdoclet.sf.net/</url>
 </dependency>

Do you have a proxy ?

Did you configure maven to use it ??

arnaud


> -----Message d'origine-----
> De : Qin Ding [mailto:[EMAIL PROTECTED]
> Envoyé : mardi 21 juin 2005 17:49
> À : Maven Users List
> Objet : RE: Newbie Help
>
>
>
>
>
> Scott:
>
> I tried to manually download this jar using the URL,
> http://www.ibiblio.org/maven/xjavadoc/jars/xjavadoc-1.0.2.jar,
>  I got the same problem.
>
> The error stack is attached as the result of -X.  Thank you
> for your help.
>
> Qin
>
> (See attached file: error2.txt)
>
>
>
> --------------------------------------------------------------
> --------------------------
>
> This is a PRIVATE message. If you are not the intended
> recipient, please delete without copying and kindly advise us
> by e-mail of the mistake in delivery. NOTE: Regardless of
> content, this e-mail shall not operate to bind CSC to any
> order or other contract unless pursuant to explicit written
> agreement or government initiative expressly permitting the
> use of e-mail for such purpose.
> --------------------------------------------------------------
> --------------------------
>
>
>
>
>
>
>                       "Ryan, Scott"
>
>                       <Scott.Ryan              To:
> "'Maven Users List'" <users@maven.apache.org>
>                       @echostar.com>           cc:
>
>                                                Subject: RE:
> Newbie Help
>                       06/20/05 04:07
>
>                       PM
>
>                       Please respond
>
>                       to "Maven Users
>
>                       List"
>
>
>
>
>
>
>
>
>
> Try running the command with -X in it and you will get more
> details that might point to the source of your trouble.
>
> Scott Damon Ryan
> Developer
> (720) 514-5389
> [EMAIL PROTECTED]
>
> -----Original Message-----
> From: Qin Ding [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 20, 2005 2:33 PM
> To: Maven Users List
> Subject: RE: Newbie Help
>
>
>
>
>
> Scott:
>
> I checked the genapp created project.xml, the groupId for
> dependency xjavadoc is xdoclet.
>
> <dependency>
>    <groupId>xdoclet</groupId>
>    <artifactId>xjavadoc</artifactId>
>    <version>1.0.2</version>
>    <url>http://xdoclet.sf.net/</url>
> </dependency>
>
> Qin
> --------------------------------------------------------------
> --------------
>
> ------------
>
> This is a PRIVATE message. If you are not the intended
> recipient, please delete without copying and kindly advise us
> by e-mail of the mistake in delivery. NOTE: Regardless of
> content, this e-mail shall not operate to bind CSC to any
> order or other contract unless pursuant to explicit written
> agreement or government initiative expressly permitting the
> use of e-mail for such purpose.
> --------------------------------------------------------------
> --------------
>
> ------------
>
>
>
>
>
>
>                       "Ryan, Scott"
>
>                       <Scott.Ryan              To:      "'Maven Users
> List'"
> <users@maven.apache.org>
>                       @echostar.com>           cc:
>
>                                                Subject: RE:
> Newbie Help
>
>                       06/20/05 03:19
>
>                       PM
>
>                       Please respond
>
>                       to "Maven Users
>
>                       List"
>
>
>
>
>
>
>
>
>
> The group id on the xjavadoc dependency in the project.xml is
> incorrect.
> You can change the groupid to xdoclet for the xjavadoc
> artifact dependency and that will download the library from
> the correct library.  I believe someone placed the xjavadoc
> jars into the incorrect groupid in the ibiblio directory for
> the 1.0.2 version.
>
>
>
> <dependency>
>    <groupId>xjavadoc</groupId>
>    <artifactId>xjavadoc</artifactId>
>    <version>1.0.2</version>
>    <url>http://xdoclet.sf.net/</url>
>  </dependency>
>
> should look like
>
> <dependency>
>    <groupId>xdoclet</groupId>
>    <artifactId>xjavadoc</artifactId>
>    <version>1.0.2</version>
>    <url>http://xdoclet.sf.net/</url>
>  </dependency>
> Scott Damon Ryan
> Developer
> (720) 514-5389
> [EMAIL PROTECTED]
>
> -----Original Message-----
> From: Qin Ding [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 20, 2005 1:38 PM
> To: Maven Users List
> Subject: Newbie Help
>
>
>
>
>
> After I downloaded the maven 1.0.2, I tied the 10-minute
> tutorial. I used genapp to create web project and before I do
> anything, I issed maven java:compile. I see many jars
> downloaded to my repository directory.
> However, it stopped when attempting download
> xjavadoc-1.0.2.jar.  I don't know why.  I tried maven Netbean
> plugin, it is the same.  It stops when trying to download
> this jar.  Also, what dost it mean:  "Tag library requested
> that is not present: 'maven' in plugin:
> 'maven-xdoclet-plugin-1.2'?  What should I do about it?
>
> build:start:
>
> clean:clean:
>
> clean:
>
> java:prepare-filesystem:
>     [mkdir] Created dir: C:\Documents and Settings\QIN
> DING\My Projects\Mywebs\lmsportlet\target\classes
>
> java:compile:
>     [mkdir] Created dir: C:\Documents and Settings\QIN DING\
> MyProjects\Mywebs\lmsportlet\target\xdoclet\webdoclet\WEB-INF
> Tag library requested that is not present: 'maven' in plugin:
> 'maven-xdoclet-plugin-1.2'
> Attempting to download xjavadoc-1.0.2.jar.
>
> BUILD FAILED
> File...... C:\Documents and Settings\QIN DING\My
> Projects\Mywebs\lmsportlet\maven.xml
> Element... attainGoal
> Line...... 23
> Column.... 43
> The build cannot continue because of the following
> unsatisfied dependency:
>
> xjavadoc-1.0.2.jar
>
> WARNING: Failed to download xjavadoc-1.0.2.jar.
> Total time: 46 seconds
> Finished at: Mon Jun 20 13:07:06 GMT-06:00 2005
>
>
> --------------------------------------------------------------
> --------------
>
>
> ------------
>
> This is a PRIVATE message. If you are not the intended
> recipient, please delete without copying and kindly advise us
> by e-mail of the mistake in delivery. NOTE: Regardless of
> content, this e-mail shall not operate to bind CSC to any
> order or other contract unless pursuant to explicit written
> agreement or government initiative expressly permitting the
> use of e-mail for such purpose.
> --------------------------------------------------------------
> --------------
>
>
> ------------
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to