--- [EMAIL PROTECTED] wrote:

> Hi,

Hallo Mike, 

> i've problems getting XDoclet2/Maven2 to work.
> - I've added both codehaus repositories to my
> pom.xml
> - I cleaned my local repository> - I tried various
combinations of
> 2.0.5-SNAPSHOT/2.0.5/1.0.4-SNAPSHOT/whatever

If I were you , I would use  plugin version of 2.0.5 
as this is a released one and has stable dependencies.
You do not need plugin-qtags in your invocations
( it is for plugin build only ) 

Here are my plugin repositories;
    <pluginRepositories>
        <pluginRepository>
            <id>codehaus</id>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <name>Codehaus maven repository</name>
            <url>http://repository.codehaus.org/</url>
        </pluginRepository>
        <pluginRepository>
            <id>codehaus-snapshots</id>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <name>Codehaus snapshots maven
repository</name>
           
<url>http://snapshots.repository.codehaus.org/</url>
        </pluginRepository>
        <pluginRepository>
            <id>dist.codehaus.org</id>
            <name>legacy repository on codehaus</name>
            <url>http://dist.codehaus.org</url>
            <layout>legacy</layout>
        </pluginRepository>
        <pluginRepository>
            <id>ibiblio.org</id>
            <url>http://www.ibiblio.org/maven2/</url>
        </pluginRepository>
    </pluginRepositories>


>org.xdoclet.plugin.ejb.interfaces.RemoteHomeInterfacePlugin
> doesn't have any satisfiable constructors.
> Unsatisfiable dependencies:
>  [[class
> org.generama.MergeableVelocityTemplateEngine,
> interface org.generama.WriterMapper, class
> org.xdoclet.plugin.ejb.EjbConfig]]


You forgot to schow your <configuration>
section. But be aware, that
org.xdoclet.plugin.ejb.EjbConfig is not registered by
default by m2 mojo ( as this is plugin specific stuff
)  - so you will need separate <component> for it.

<component>
<classname>org.xdoclet.plugin.ejb.EjbConfig</classname>
<params>

</params>
</component>

----[ Konstantin Pribluda http://www.pribluda.de ]----------------
Still using XDoclet 1.x?  XDoclet 2 is released and of production quality.
check it out: http://xdoclet.codehaus.org


 
____________________________________________________________________________________
Now that's room service!  Choose from over 150,000 hotels
in 45,000 destinations on Yahoo! Travel to find your fit.
http://farechase.yahoo.com/promo-generic-14795097

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
xdoclet-plugins-interest mailing list
xdoclet-plugins-interest@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-interest

Reply via email to