Re: XDoclet plugin strange behavior

2004-01-05 Thread Kevin Hagel
http://opensource.atlassian.com/projects/xdoclet/secure/ViewIssue.jspa?key=XDT-673
I filed this back in october, still unresolved.

Are you building from source?  The maven plugin source still uses the old
style, which has NEVER worked since I first started building XDoclet about 6
months ago.  I changed the /blah/XDocletsource/maven/project.xml file to
contain the following


xdoclet+xdoclet-module
@XDOCLET_VERSION@


xdoclet
xjavadoc
@XJAVADOC_VERSION@


Without this fix XDoclet's maven plugin will not load.

- Original Message - 
From: "__matthewHawthorne" <[EMAIL PROTECTED]>
To: "Maven Users List" <[EMAIL PROTECTED]>
Sent: Sunday, January 04, 2004 10:55 AM
Subject: Re: XDoclet plugin strange behavior


> A week or so ago, I filed this as a bug with the Xdoclet team.  The
> plugin looks for the xjavadoc plugin with the groupId "xjavadoc" instead
> of "xdoclet".  I haven't heard anything back.
>
> The frustrating part is that the only way I was able to figure out the
> error was by looking at the plugin's project.xml.
>
> To fix it, you must either put the jar into /xjavadoc/jars or use
> the jar override feature and put it wherever you want.  I requested that
> the xjavadoc jar be put into its own directory (not the xdoclet dir) on
> ibiblio, but the request was denied.
>
>
> Aleksandr Shneyderman wrote:
> > Konstantin Priblouda wrote:
> >
> >> Well, if yoyu use gourpid, you have to call your
> >> xjavadoc xdoclet-xjavadoc.whatever.jar
> >>
> >
> > According to the documentation the files are located according to the
> > following pattern:
> >
> > ${repo}/${groupId}/${type}s/${artifactId}-${version}.${type}
> >
> > So if my dependency looks something like the following:
> >   
> >   xjavadoc
> >   xdoclet
> >   1.0.2
> >   jar
> >   
> >
> > Should not I expcet maven to find the jar if the file at location
> > ${repo}/xdoclet/jars/xjavadoc-1.0.2.jar does exists?
> >
> > Thanks,
> > Alex.
>
>
> -
> 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]



Re: XDoclet plugin strange behavior

2004-01-04 Thread __matthewHawthorne
A week or so ago, I filed this as a bug with the Xdoclet team.  The 
plugin looks for the xjavadoc plugin with the groupId "xjavadoc" instead 
of "xdoclet".  I haven't heard anything back.

The frustrating part is that the only way I was able to figure out the 
error was by looking at the plugin's project.xml.

To fix it, you must either put the jar into /xjavadoc/jars or use 
the jar override feature and put it wherever you want.  I requested that 
the xjavadoc jar be put into its own directory (not the xdoclet dir) on 
ibiblio, but the request was denied.

Aleksandr Shneyderman wrote:
Konstantin Priblouda wrote:

Well, if yoyu use gourpid, you have to call your
xjavadoc xdoclet-xjavadoc.whatever.jar
According to the documentation the files are located according to the
following pattern:
${repo}/${groupId}/${type}s/${artifactId}-${version}.${type}

So if my dependency looks something like the following:
  
  xjavadoc
  xdoclet
  1.0.2
  jar
  
Should not I expcet maven to find the jar if the file at location
${repo}/xdoclet/jars/xjavadoc-1.0.2.jar does exists?
Thanks,
Alex.


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


Re: XDoclet plugin strange behavior

2004-01-04 Thread Aleksandr Shneyderman
Konstantin Priblouda wrote:

Well, if yoyu use gourpid, you have to call your
xjavadoc 
xdoclet-xjavadoc.whatever.jar

According to the documentation the files are located according to the
following pattern:
${repo}/${groupId}/${type}s/${artifactId}-${version}.${type}

So if my dependency looks something like the following:
  
  xjavadoc
  xdoclet
  1.0.2
  jar
  
Should not I expcet maven to find the jar if the file at location
${repo}/xdoclet/jars/xjavadoc-1.0.2.jar does exists?
Thanks,
Alex.




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


Re: XDoclet plugin strange behavior

2004-01-04 Thread Konstantin Priblouda

--- Aleksandr Shneyderman <[EMAIL PROTECTED]>
wrote:
> As you have probably noticed for the last couple of
> days I was 
> struggling with XDoclet plugin.
> What I did is I downloaded their 1.2 version,
> created xdoclet/jars 
> directory in my local repository,
> copied over the jars that come with the xdoclet. I
> then copied xdoclet's 
> maven-plugin jar to my plugins
> directory. 

Well, if yoyu use gourpid, you have to call your
xjavadoc 
xdoclet-xjavadoc.whatever.jar

If you do not use groupid, you shall place it in
/xjavadoc/jars/


regards,

=
[ Konstantin Pribluda ( ko5tik ) ]
Zu Verstärkung meines Teams suche ich ab Sofort einen
Softwareentwickler[In] für die Festanstellung. 
Arbeitsort: Mainz 
Skills:  Programieren, Kentnisse in OpenSource-Bereich
[ http://www.pribluda.de ]

__
Do you Yahoo!?
Find out what made the Top Yahoo! Searches of 2003
http://search.yahoo.com/top2003

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



XDoclet plugin strange behavior

2004-01-03 Thread Aleksandr Shneyderman
As you have probably noticed for the last couple of days I was 
struggling with XDoclet plugin.
What I did is I downloaded their 1.2 version, created xdoclet/jars 
directory in my local repository,
copied over the jars that come with the xdoclet. I then copied xdoclet's 
maven-plugin jar to my plugins
directory. 

I created project.xml and maven.xml (they are both pasted at the end of 
this message). The problem
I am having has something to do with the  xjavadoc dependency. Right now 
xjavadoc-1.0.2.jar is
in my ${maven.repo.local}/xdoclet/jars/ directory and when I run maven I 
am getting an error saying
that xjavadoc-1.0.2 can not be resolved. When I move the jar to 
${maven.repo.local}/xjavadoc/jars/
directory I am able to build nicely. Basically it is no big deal I just 
hate to keep xjavadoc separately
from xdoclet. Does anyone know where I might need to start looking, to 
fix this?

my project.xml

   gls-model
   1.0
   
   
   ${basedir}/src/java
   
   
   
   
   xdoclet-hibernate-module
   xdoclet
   1.2
   jar
  
   
   xdoclet
   xdoclet
   1.2
   jar
   
   
   xjavadoc
   xdoclet
   1.0.2
   jar
  
   


my maven.xml:

   
   
   



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