Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-23 00:18:05 +0000
committerJoakim Erdfelt2015-04-23 00:18:05 +0000
commit6ecfb96508df39578c65a41f5104fb174d05e9ac (patch)
treeac899eeba73a532e09630ac92f04f6e04d07d6c3 /jetty-jspc-maven-plugin/pom.xml
parent4db27843542211c57746438c328b32c0f1f69e81 (diff)
downloadorg.eclipse.jetty.project-6ecfb96508df39578c65a41f5104fb174d05e9ac.tar.gz
org.eclipse.jetty.project-6ecfb96508df39578c65a41f5104fb174d05e9ac.tar.xz
org.eclipse.jetty.project-6ecfb96508df39578c65a41f5104fb174d05e9ac.zip
464727 - Update Javadoc for Java 8 DocLint
Diffstat (limited to 'jetty-jspc-maven-plugin/pom.xml')
-rw-r--r--jetty-jspc-maven-plugin/pom.xml64
1 files changed, 62 insertions, 2 deletions
diff --git a/jetty-jspc-maven-plugin/pom.xml b/jetty-jspc-maven-plugin/pom.xml
index 853f6f59d8..deb7481d75 100644
--- a/jetty-jspc-maven-plugin/pom.xml
+++ b/jetty-jspc-maven-plugin/pom.xml
@@ -14,25 +14,85 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
- <version>2.9</version>
+ <version>3.4</version>
<executions>
<execution>
<id>exec-plugin-doc</id>
<phase>generate-sources</phase>
<goals>
- <goal>xdoc</goal>
+ <goal>descriptor</goal>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <tags>
+ <tag>
+ <name>phase</name>
+ <placement>t</placement>
+ <head>Phase:</head>
+ </tag>
+ <tag>
+ <name>goal</name>
+ <placement>t</placement>
+ <head>Goal:</head>
+ </tag>
+ <tag>
+ <name>description</name>
+ <placement>a</placement>
+ <head>Description:</head>
+ </tag>
+ <tag>
+ <name>parameter</name>
+ <placement>f</placement>
+ <head>Parameter:</head>
+ </tag>
+ <tag>
+ <name>required</name>
+ <placement>f</placement>
+ <head>Required:</head>
+ </tag>
+ <tag>
+ <name>readonly</name>
+ <placement>f</placement>
+ <head>Read-Only:</head>
+ </tag>
+ <tag>
+ <name>execute</name>
+ <placement>X</placement>
+ <head />
+ </tag>
+ <tag>
+ <name>requiresDependencyResolution</name>
+ <placement>X</placement>
+ <head />
+ </tag>
+ <tag>
+ <name>requiresProject</name>
+ <placement>X</placement>
+ <head />
+ </tag>
+ <tag>
+ <name>threadSafe</name>
+ <placement>X</placement>
+ <head />
+ </tag>
+ </tags>
+ </configuration>
+ </plugin>
</plugins>
</build>
<dependencies>

Back to the top