This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/flex-utilities.git
The following commit(s) were added to refs/heads/develop by this push:
new 0347960 - Made the build not break on javadoc issues.
0347960 is described below
commit 03479603a10705c95364d716d73b9a0510757b13
Author: Christofer Dutz <[email protected]>
AuthorDate: Fri Nov 15 10:41:37 2019 +0100
- Made the build not break on javadoc issues.
---
flex-maven-tools/flex-sdk-converter/pom.xml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/flex-maven-tools/flex-sdk-converter/pom.xml
b/flex-maven-tools/flex-sdk-converter/pom.xml
index 92ff0c5..72f911e 100644
--- a/flex-maven-tools/flex-sdk-converter/pom.xml
+++ b/flex-maven-tools/flex-sdk-converter/pom.xml
@@ -79,6 +79,20 @@
</configuration>
</plugin>
</plugins>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.1.1</version>
+ <configuration>
+ <failOnError>false</failOnError>
+ <failOnWarnings>false</failOnWarnings>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
<profiles>