Hi,

I have created my  /src/site/site.xml and pom.xml like as follows. But when
i am trying create mvn site, its not creating sub modules links in parent
html. Here i have enclosed my site.xml and pom.xml. what was wrong in these
files?.  

Site.xml
<?xml version="1.0" encoding="UTF-8"?>
<project name="My Framework">
  <bannerLeft>
    <name>My Framework</name>
    <src>http://maven.apache.org/images/apache-maven-project.png</src>
    <href>http://maven.apache.org/</href>
  </bannerLeft>
  <bannerRight>
    <src>http://maven.apache.org/images/maven-small.gif</src>
  </bannerRight>
  <skin>
    <groupId>org.apache.maven.skins</groupId>
    <artifactId>maven-default-skin</artifactId>
    <version>1.0</version>
  </skin>
  <body>
    <links>
        <item name="My Framework" href="../target/site/index.html"/> 
    </links>
    ${modules}
    ${reports} 
  </body>
</project>


Pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>my.id.util</groupId>
        <version>${my_version_number}</version>
        <name>MyFramework</name>
        <artifactId>MyFramework</artifactId>
        <packaging>pom</packaging>
        <distributionManagement>
            <site>
              <id>MyFramework</id>
              <url>scpexe://MyProject/</url>
            </site>  
                <snapshotRepository>
              <id>snapshots</id>
              <name>Maven Central Plugins Development Repository</name>
             
<url>scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2</url>
            </snapshotRepository>
        </distributionManagement> 
        <build>
                <directory>${lib.dir}</directory>
                <outputDirectory>target</outputDirectory>
        </build>
        <modules>
                <module>subA</module>
                <module>subB</module>
                <module>subC</module>
                <module>subD</module>
                <module>subE</module>
                <module>subF</module>
        </modules>
        <reporting>
            <plugins>
              <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-site-plugin</artifactId>
               <version>2.0-beta-5</version>
               <configuration>
                 <locales>en</locales> 
               </configuration>
              </plugin>
            </plugins>
    </reporting>
    </project>
-- 
View this message in context: 
http://www.nabble.com/maven-site-not-showing-sub-module-links-in-parent-html-tf2291089.html#a6363093
Sent from the Maven - Users mailing list archive at Nabble.com.


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

Reply via email to