Probably something like that. I tried this
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-confluence</artifactId> <version>1.0-alpha-9</version> </dependency> </dependencies> </plugin> </plugins> </build> But it doesn't work. If I change the version number to 1.0-beta-1-SNAPSHOT and add a plugin repository to point to apache snaphshots it works. I.e. <pluginRepositories> <pluginRepository> <id>apache-snapshots</id> <url>http://people.apache.org/maven-snapshot-repository</url> </pluginRepository> </pluginRepositories> But I don't want to be relying on a snapshot. Is there a way to use the released version - maybe by fixing the site-plugin version or something? Dennis Lundberg-2 wrote: > > You probably need this: > > <dependency> > <groupId>org.apache.maven.doxia</groupId> > <artifactId>doxia-module-confluence</artifactId> > </dependency> > > > Dave Syer wrote: >> Doesn't work for me. Is there an additional dependency or extension to >> add >> somewhere? >> >> >> Hervé BOUTEMY wrote: >>> Le samedi 20 octobre 2007, Dave Syer a écrit : >>>> I assume there is a naming convention for directory and file extension >>>> (like apt). What is it? Is there any additional configuration? >>> yes: confluence/*.confluence >>> you're right, this basic info should go into the documentation, like >>> "Doxia >>> Modules Guide": http://maven.apache.org/doxia/modules/index.html >>> >>> >> > > > -- > Dennis Lundberg > > > -- View this message in context: http://www.nabble.com/How-to-use-confluence-format--tf4657320.html#a13314131 Sent from the Doxia - Users mailing list archive at Nabble.com.