English 中文(简体)
maven javadoc - 概览summay.html 未更新
原标题:maven javadoc - overviewsummay.html not getting updated
  • 时间:2012-05-22 21:07:20
  •  标签:
  • java
  • maven-2

我有多模块项目

Proj
 +ModuleA
   src
     main
       java
     overview.html
   pom.xml
 +ModuleB
   pom.xml
pom.xml

我试图为这些模块生成 javadoc 。 我想在概览摘要. html 中添加概览.html 。 在模块A/ src/ main 下, 我给地方概览.html, 但它没有更新概览摘要页面 。

    <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.8.1</version>
         <configuration>
        <stylesheetfile>javadoc.css</stylesheetfile>
        <overview>${basedir}moduleAsrcmainoverview.html</overview>
         </configuration>
        <executions>
           <execution>
            <id>attach-javadocs</id>
            <goals>
                   <goal>jar</goal>
            </goals>
            <configuration>
               <show>private</show>
            </configuration>
            </execution>
        </executions>
   </plugin>

我查看了文件,我看一切都很好。我的路径有问题吗?

最佳回答

我可以用下面的配置来解决这个问题

 <overview>${project.build.sourceDirectory}/overview.html</overview>

We will have to use ${project.build.sourceDirectory}, ${basedir} doesn t seem to be working. Place the overview.html under /src/main/java directory. In case of multi module project also, place the overview.html under any of the module s source directory (i.e src/main/java).

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签