Hi 
 
thanks for fast reply.
 
- switched from 2.0.5-SNAPSHOT to 2.0.5
- removed qtags plugin
 
Same error.
 
 
 
Full pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0";
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
 <parent>
  ...
 </parent>
 <modelVersion>4.0.0</modelVersion>
 <artifactId>...</artifactId>
 <version>1.0-SNAPSHOT</version>
 <packaging>ejb</packaging>
 <name>EJB Module</name>
 <dependencies>
  <dependency>
   <groupId>jboss</groupId>
   <artifactId>jboss-j2ee</artifactId>
  </dependency>
  <dependency>
   <groupId>commons-lang</groupId>
   <artifactId>commons-lang</artifactId>
   <version>2.1</version>
  </dependency>
  <dependency>
   <groupId>jboss</groupId>
   <artifactId>jboss</artifactId>
  </dependency>
  <dependency>
   <groupId>commons-logging</groupId>
   <artifactId>commons-logging</artifactId>
  </dependency>
  <dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring</artifactId>
   <version>1.2.8</version>
  </dependency>
  <dependency>
   <groupId>com.ibatis</groupId>
   <artifactId>ibatis2-sqlmap</artifactId>
   <version>2.1.7.597</version>
  </dependency>
  <dependency>
   <groupId>oracle</groupId>
   <artifactId>ojdbc14</artifactId>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupId>xmlbeans</groupId>
   <artifactId>xmlbeans</artifactId>
   <version>1.0.3</version>
  </dependency>
  <dependency>
   <groupId>org.hibernate</groupId>
   <artifactId>hibernate</artifactId>
  </dependency>
  <dependency>
   <groupId>org.apache.jakarta.poi</groupId>
   <artifactId>poi</artifactId>
   <version>2.5.1</version>
  </dependency>
  <dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>3.8.2</version>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupId>hsqldb</groupId>
   <artifactId>hsqldb</artifactId>
   <version>1.8.0.4</version>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupId>jboss</groupId>
   <artifactId>jbossall-client</artifactId>
   <version>4.0.3SP1</version>
   <type>jar</type>
   <scope>test</scope>
  </dependency>
 </dependencies>
 <build>
  <plugins>
   <plugin>
    <groupId>xdoclet</groupId>
    <artifactId>maven2-xdoclet2-plugin</artifactId>
    <version>2.0.5</version>
    <inherited>true</inherited>
    <executions>
     <execution>
      <id>xdoclet</id>
      <phase>generate-sources</phase>
      <goals>
       <goal>xdoclet</goal>
      </goals>
     </execution>
    </executions>
    <dependencies>
     <dependency>
      <groupId>xdoclet-plugins</groupId>
      <artifactId>xdoclet-plugin-ejb</artifactId>
      <version>1.0.4-SNAPSHOT</version>
     </dependency>
     <dependency>
      <groupId>xdoclet-plugins</groupId>
      <artifactId>xdoclet-plugin-plugin</artifactId>
      <version>1.0.4-SNAPSHOT</version>
     </dependency>
    </dependencies>
    <configuration>
     <configs>
      <config>
       <includes>**/*.java</includes>
       <params>
        <destdir>
         ${project.build.directory}/generated-resources/xdoclet
        </destdir>
       </params>
       <components>
        <component>
         <classname>
          org.xdoclet.plugin.ejb.EjbConfig
         </classname>
        </component>
        <component>
         <classname>
          org.xdoclet.plugin.ejb.interfaces.RemoteHomeInterfacePlugin
         </classname>
        </component>
        <component>
         <classname>
          org.xdoclet.plugin.ejb.interfaces.RemoteInterfacePlugin
         </classname>
        </component>
        <component>
         <classname>
          org.xdoclet.plugin.ejb.interfaces.LocalInterfacePlugin
         </classname>
        </component>
        <component>
         <classname>
          org.xdoclet.plugin.ejb.interfaces.LocalHomeInterfacePlugin
         </classname>
        </component>
        <component>
         <classname>
          org.xdoclet.plugin.ejb.descriptor.EjbJarXmlPlugin
         </classname>
        </component>
       </components>
      </config>
     </configs>
    </configuration>
   </plugin>
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
     <excludes>
      <exclude>**/Abstract*</exclude>
      <exclude>**/*IntegrationTest.class</exclude>
      <exclude>**/*ManualTest.class</exclude>
     </excludes>
    </configuration>
   </plugin>
   <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <version>2.0</version>
    <executions>
     <execution>
      <goals>
       <goal>clean</goal>
      </goals>
     </execution>
    </executions>
   </plugin>
  </plugins>
 </build>
 <reporting>
  <plugins>
   <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <version>2.0</version>
   </plugin>
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-report-plugin</artifactId>
   </plugin>
  </plugins>
 </reporting>
 <repositories>
  <repository>
   <id>codehaus-maven2</id>
   <name>Codehaus Maven2 Repo</name>
   <url>http://dist.codehaus.org</url>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </repository>
  <repository>
   <id>codehaus-legacy</id>
   <name>Codehaus Legacy Repo</name>
   <url>http://dist.codehaus.org</url>
   <layout>legacy</layout>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </repository>
 </repositories>
 <pluginRepositories>
  <pluginRepository>
   <id>codehaus-maven2</id>
   <name>Codehaus Maven2 Repo</name>
   <url>http://dist.codehaus.org</url>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </pluginRepository>
  <pluginRepository>
   <id>codehaus-legacy</id>
   <name>Codehaus Legacy Repo</name>
   <url>http://dist.codehaus.org</url>
   <layout>legacy</layout>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </pluginRepository>
 </pluginRepositories>
</project>
 
--
Mike Haller
Phone @ Innovations +49-7545-202-541
Phone @ Glencore +41-41709-2989
-------------------------------------------------------------
Innovations Softwaretechnologie GmbH
Ziegelei 7, 88090 Immenstaad, Germany
Phone:   +49(0)7545-202-300
Fax:     +49(0)7545-202-301
[EMAIL PROTECTED]
www.innovations-software.com
-------------------------------------------------------------
Executives:
Achim Berger, Thomas Cotic, Walter Pitz
Register Court Ulm HRB 631622
-------------------------------------------------------------


________________________________

From: [EMAIL PROTECTED] on behalf of Konstantin Priblouda
Sent: Thu 2/15/2007 12:08
To: xdoclet-plugins-interest@lists.sourceforge.net
Subject: Re: [xdoclet-plugins-interest] RemoteHomeInterfacePlugin doesn'thave 
any satisfiable constructors




--- [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


-------------------------------------------------------------------------
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