pom beautified

This commit is contained in:
stfm
2013-03-24 20:39:53 +01:00
parent 644d4e4b40
commit 52825e753b

90
pom.xml
View File

@@ -124,59 +124,59 @@
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.0</version> <version>3.0</version>
<executions> <executions>
<execution> <execution>
<phase>site</phase> <phase>site</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<reporting> <reporting>
<plugins> <plugins>
<!-- Run selective reports - let's build 'about' page only --> <!-- Run selective reports - let's build 'about' page only -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version> <version>2.6</version>
<reportSets> <reportSets>
<reportSet> <reportSet>
<reports> <reports>
<report>index</report> <report>index</report>
</reports> </reports>
</reportSet> </reportSet>
</reportSets> </reportSets>
</plugin> </plugin>
<!-- goal site:site - alternative TeXDoclet doclet configuration --> <!-- goal site:site - alternative TeXDoclet doclet configuration -->
<!-- TODO : html docs are not created --> <!-- TODO : html docs are not created -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version> <version>2.9</version>
<reportSets> <reportSets>
<reportSet> <reportSet>
<id>html</id> <id>html</id>
<configuration> <configuration>
<destDir>apidocs_html</destDir> <destDir>apidocs_html</destDir>
</configuration> </configuration>
<reports> <reports>
<report>javadoc</report> <report>javadoc</report>
</reports> </reports>
</reportSet> </reportSet>
<reportSet> <reportSet>
<id>texdoclet</id> <id>texdoclet</id>
<configuration> <configuration>
<doclet>org.stfm.texdoclet.TeXDoclet</doclet> <doclet>org.stfm.texdoclet.TeXDoclet</doclet>
<docletArtifact> <docletArtifact>
<groupId>org.stfm</groupId> <groupId>org.stfm</groupId>
@@ -196,19 +196,19 @@
-subpackages org -subpackages org
-shortinherited -shortinherited
</additionalparam> </additionalparam>
<destDir>apidocs_tex</destDir> <destDir>apidocs_tex</destDir>
<name>TeXDoclet</name> <name>TeXDoclet</name>
<description>TeXDoclet documentation.</description> <description>TeXDoclet documentation.</description>
</configuration> </configuration>
<reports> <reports>
<report>javadoc</report> <report>javadoc</report>
</reports> </reports>
</reportSet> </reportSet>
</reportSets> </reportSets>
</plugin> </plugin>
</plugins> </plugins>
</reporting> </reporting>
</project> </project>