Changeset 759


Ignore:
Timestamp:
09/04/12 11:00:44 (12 years ago)
Author:
pharms
Message:
  • initial support for overarching java doc generation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest/pom.xml

    r755 r759  
    4242                </configuration> 
    4343            </plugin> 
     44            <plugin> 
     45                <artifactId>maven-source-plugin</artifactId> 
     46                <version>2.1.1</version> 
     47                <executions> 
     48                    <execution> 
     49                        <id>bundle-sources</id> 
     50                        <phase>package</phase> 
     51                        <goals> 
     52                            <!-- produce source artifact for main project sources --> 
     53                            <goal>jar-no-fork</goal> 
     54                        </goals> 
     55                    </execution> 
     56                </executions> 
     57            </plugin> 
    4458        </plugins> 
    4559    </build> 
     
    4963                <groupId>org.apache.maven.plugins</groupId> 
    5064                <artifactId>maven-javadoc-plugin</artifactId> 
     65                <version>2.8.1</version> 
     66                <configuration> 
     67                    <!-- switch on dependency-driven aggregation --> 
     68                    <includeDependencySources>true</includeDependencySources> 
     69 
     70                    <dependencySourceIncludes> 
     71                        <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude> 
     72                    </dependencySourceIncludes> 
     73                </configuration> 
    5174            </plugin> 
    5275        </plugins> 
Note: See TracChangeset for help on using the changeset viewer.