Hi Peter,

Friday, April 6, 2007, 11:05:36 PM, you wrote:

> I have an application that I'm trying to build using maven2 and the
> maven-xdoclet-plugin.  The area in my pom.xml that I'm mud wrestling
> with now is: 
>  <hibernatecfg
...
> What is it asking for?

I don't know if this'll help, but this is how I'm using XDoclet in
M2, so it should just be a matter of replacing the <webdoclet>...</webdoclet> 
part

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>xdoclet-maven-plugin</artifactId>
  <executions>
      <execution>
          <phase>generate-resources</phase>
          <goals>
              <goal>xdoclet</goal>
          </goals>
          <configuration>
              <tasks>
                  <webdoclet
                          
destdir="${project.build.directory}/${project.artifactId}-${project.version}/WEB-INF"
                          mergeDir="src/main/webapp/WEB-INF/merge">
                      <fileset dir="${project.build.sourceDirectory}">
                          <include name="**/*.java" />
                      </fileset>
                      <deploymentdescriptor servletspec="2.3">
                          <taglib uri="mytags" location="/WEB-INF/taglib.tld" />
                      </deploymentdescriptor>
                      <jsptaglib jspversion="1.2" shortname="mytags" />
                      <weblogicwebxml description="Wig2 Pages" version="8.1" />
                  </webdoclet>
              </tasks>
          </configuration>
      </execution>
  </executions>
</plugin>

-- 
Best regards,
 Gwyn                            mailto:[EMAIL PROTECTED]


-------------------------------------------------------------------------
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-user mailing list
xdoclet-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to