Skip to content

Commit 834da56

Browse files
committed
Adding Javadoc targets for all the missing packages
1 parent 0742893 commit 834da56

File tree

5 files changed

+116
-0
lines changed

5 files changed

+116
-0
lines changed

appengine-api-1.0-sdk/pom.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,39 @@
528528
</execution>
529529
</executions>
530530
</plugin>
531+
532+
<plugin>
533+
<groupId>org.apache.maven.plugins</groupId>
534+
<artifactId>maven-javadoc-plugin</artifactId>
535+
<executions>
536+
<execution>
537+
<phase>compile</phase>
538+
<goals>
539+
<goal>jar</goal>
540+
</goals>
541+
</execution>
542+
</executions>
543+
<configuration>
544+
<notimestamp>true</notimestamp>
545+
<show>public</show>
546+
<failOnWarnings>false</failOnWarnings>
547+
<doclint>none</doclint>
548+
<sourcepath>${project.basedir}/../api/src/main/java</sourcepath>
549+
<includeDependencySources>true</includeDependencySources>
550+
<additionalDependencies>
551+
<additionalDependency>
552+
<groupId>com.google.auto.service</groupId>
553+
<artifactId>auto-service</artifactId>
554+
<version>1.0-rc2</version>
555+
</additionalDependency>
556+
<additionalDependency>
557+
<groupId>com.google.auto</groupId>
558+
<artifactId>auto-common</artifactId>
559+
<version>1.2.1</version>
560+
</additionalDependency>
561+
</additionalDependencies>
562+
</configuration>
563+
</plugin>
531564
</plugins>
532565
</build>
533566
</project>

appengine-api-stubs/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,32 @@
378378
</execution>
379379
</executions>
380380
</plugin>
381+
<plugin>
382+
<groupId>org.apache.maven.plugins</groupId>
383+
<artifactId>maven-javadoc-plugin</artifactId>
384+
<executions>
385+
<execution>
386+
<phase>compile</phase>
387+
<goals>
388+
<goal>jar</goal>
389+
</goals>
390+
</execution>
391+
</executions>
392+
<configuration>
393+
<notimestamp>true</notimestamp>
394+
<show>public</show>
395+
<failOnWarnings>false</failOnWarnings>
396+
<doclint>none</doclint>
397+
<sourcepath>${project.basedir}/../api_dev/src/main/java</sourcepath>
398+
<additionalDependencies>
399+
<additionalDependency>
400+
<groupId>com.google.auto.service</groupId>
401+
<artifactId>auto-service</artifactId>
402+
<version>1.0-rc2</version>
403+
</additionalDependency>
404+
</additionalDependencies>
405+
</configuration>
406+
</plugin>
381407
</plugins>
382408
</build>
383409
</project>

runtime_shared_jetty12/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,25 @@
160160
</executions>
161161

162162
</plugin>
163+
<plugin>
164+
<groupId>org.apache.maven.plugins</groupId>
165+
<artifactId>maven-javadoc-plugin</artifactId>
166+
<executions>
167+
<execution>
168+
<phase>compile</phase>
169+
<goals>
170+
<goal>jar</goal>
171+
</goals>
172+
</execution>
173+
</executions>
174+
<configuration>
175+
<notimestamp>true</notimestamp>
176+
<show>public</show>
177+
<failOnWarnings>false</failOnWarnings>
178+
<doclint>none</doclint>
179+
<sourcepath>${project.basedir}/../runtime_shared</sourcepath>
180+
</configuration>
181+
</plugin>
163182
</plugins>
164183
</build>
165184
</project>

runtime_shared_jetty12_ee10/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,25 @@
153153
</executions>
154154

155155
</plugin>
156+
<plugin>
157+
<groupId>org.apache.maven.plugins</groupId>
158+
<artifactId>maven-javadoc-plugin</artifactId>
159+
<executions>
160+
<execution>
161+
<phase>compile</phase>
162+
<goals>
163+
<goal>jar</goal>
164+
</goals>
165+
</execution>
166+
</executions>
167+
<configuration>
168+
<notimestamp>true</notimestamp>
169+
<show>public</show>
170+
<failOnWarnings>false</failOnWarnings>
171+
<doclint>none</doclint>
172+
<sourcepath>${project.basedir}/../runtime_shared</sourcepath>
173+
</configuration>
174+
</plugin>
156175
</plugins>
157176
</build>
158177
</project>

runtime_shared_jetty9/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,25 @@
143143
</executions>
144144

145145
</plugin>
146+
<plugin>
147+
<groupId>org.apache.maven.plugins</groupId>
148+
<artifactId>maven-javadoc-plugin</artifactId>
149+
<executions>
150+
<execution>
151+
<phase>compile</phase>
152+
<goals>
153+
<goal>jar</goal>
154+
</goals>
155+
</execution>
156+
</executions>
157+
<configuration>
158+
<notimestamp>true</notimestamp>
159+
<show>public</show>
160+
<failOnWarnings>false</failOnWarnings>
161+
<doclint>none</doclint>
162+
<sourcepath>${project.basedir}/../runtime_shared</sourcepath>
163+
</configuration>
164+
</plugin>
146165
</plugins>
147166
</build>
148167
</project>

0 commit comments

Comments
 (0)