How to use confluence format?

View: New views
5 Messages — Rating Filter:   Alert me  

How to use confluence format?

by Dave Syer :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I assume there is a naming convention for directory and file extension (like apt).  What is it?  Is there any additional configuration?

Re: How to use confluence format?

by Hervé BOUTEMY :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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

Re: How to use confluence format?

by Dave Syer :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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

Re: How to use confluence format?

by dennisl-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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


Re: How to use confluence format?

by Dave Syer :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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