Hi,

I picked up the following snippet from this mailing list. The goal
runs without error messages but no sources are being generated. Any
clues?

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>xdoclet-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>xdoclet</goal>
                        </goals>
                        <configuration>
                            <tasks>
                                <hibernatedoclet
                                    destDir="${project.build.outputDirectory}"
                                   
excludedtags="@version,@author,@todo,@param,@return,@see"
                                    verbose="true"
                                    force="true">
                                                <fileset 
dir="${basedir}/src/main/java">
                                                        <include 
name="**/model/*.java"/>
                                                </fileset>
                                    <hibernate version="3.0"/>
                                </hibernatedoclet>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>


Thanks,
Kees de Kooter

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

Reply via email to