You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2019/04/06 23:20:08 UTC

[royale-compiler] branch release/0.9.6 updated: try to fix javadoc

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.6
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.6 by this push:
     new c53d88a  try to fix javadoc
c53d88a is described below

commit c53d88a20a062329b18a0e2867f2988611147007
Author: Alex Harui <ah...@apache.org>
AuthorDate: Sat Apr 6 16:19:58 2019 -0700

    try to fix javadoc
---
 compiler-jburg-types/pom.xml | 49 ++++++++++++++++++++++++++++++++++++++++++++
 pom.xml                      |  5 -----
 2 files changed, 49 insertions(+), 5 deletions(-)

diff --git a/compiler-jburg-types/pom.xml b/compiler-jburg-types/pom.xml
index 5d2ec8c..d2329ee 100644
--- a/compiler-jburg-types/pom.xml
+++ b/compiler-jburg-types/pom.xml
@@ -42,6 +42,11 @@
             <artifactId>reproducible-build-maven-plugin</artifactId>
             <version>0.8</version>
         </plugin>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.10.4</version>
+        </plugin>
     </plugins>
     <pluginManagement>
         <plugins>
@@ -57,6 +62,50 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.10.4</version>
+                <configuration>
+                    <tags>
+                        <tag>
+                            <name>goal</name>
+                            <placement>a</placement>
+                            <head>Goal:</head>
+                        </tag>
+                        <tag>
+                            <name>phase</name>
+                            <placement>a</placement>
+                            <head>Phase:</head>
+                        </tag>
+                        <tag>
+                            <name>threadSafe</name>
+                            <placement>a</placement>
+                            <head>Thread Safe:</head>
+                        </tag>
+                        <tag>
+                            <name>requiresDependencyResolution</name>
+                            <placement>a</placement>
+                            <head>Requires Dependency Resolution:</head>
+                        </tag>
+                        <tag>
+                            <name>requiresProject</name>
+                            <placement>a</placement>
+                            <head>Requires Project:</head>
+                        </tag>
+                        <tag>
+                            <name>note</name>
+                            <placement>a</placement>
+                            <head>note:</head>
+                        </tag>
+                        <tag>
+                            <name>pre</name>
+                            <placement>X</placement>
+                            <head></head>
+                        </tag>
+                    </tags>
+                </configuration>
+            </plugin>
         </plugins>
     </pluginManagement>
   </build>
diff --git a/pom.xml b/pom.xml
index 21b7470..21ba844 100644
--- a/pom.xml
+++ b/pom.xml
@@ -619,11 +619,6 @@
                 <placement>a</placement>
                 <head>Requires Project:</head>
               </tag>
-              <tag>
-                <name>pre</name>
-                <placement>X</placement>
-                <head></head>
-              </tag>
             </tags>
             <!-- TODO: This should only be a measure of last resort -->
             <failOnError>false</failOnError>