You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Behrooz Nobakht (JIRA)" <ji...@apache.org> on 2017/09/29 09:17:00 UTC

[jira] [Created] (DOXIA-560) Doxia Markdown does not honor Maven Site Skin parameter

Behrooz Nobakht created DOXIA-560:
-------------------------------------

             Summary: Doxia Markdown does not honor Maven Site Skin parameter
                 Key: DOXIA-560
                 URL: https://issues.apache.org/jira/browse/DOXIA-560
             Project: Maven Doxia
          Issue Type: Bug
          Components: Module - Markdown
    Affects Versions: 1.7
         Environment: {noformat}
Maven home: /mx/build/apache-maven-3.5.0
Java version: 1.8.0_152-ea, vendor: Oracle Corporation
Java home: /mx/software/jdk1.8.0_152-b02/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "4.10.0-33-generic", arch: "amd64", family: "unix"
{noformat}
            Reporter: Behrooz Nobakht


- The content of {{pom.xml}}:

{code:xml}
...
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.6</version>
            </plugin>
...
{code}

- The content of {{site.xml}}:

{code:xml}
<project xmlns="http://maven.apache.org/DECORATION/1.6.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/DECORATION/1.6.0 http://maven.apache.org/xsd/decoration-1.6.0.xsd">

    <body>
        <menu ref="parent" />
        <menu ref="reports" />
        <menu name="Reference">
            <item name="Deployment Service API" href="deployment-service-api.html"/>
        </menu>
    </body>

    <skin>
        <groupId>org.apache.maven.skins</groupId>
        <artifactId>maven-fluido-skin</artifactId>
        <version>1.6</version>
    </skin>

    <custom>
        <fluidoSkin>
            <topBarEnabled>true</topBarEnabled>
            <sideBarEnabled>false</sideBarEnabled>
        </fluidoSkin>
    </custom>

</project>
{code}

- An example file resides in {{src/site/markdown}}.

- Site is generated according to the configured skin.
- The Markdown pages are generated but do not use the configured skin for Maven Site.





--
This message was sent by Atlassian JIRA
(v6.4.14#64029)