You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ro...@apache.org on 2019/12/03 14:10:39 UTC

[aries-cdi] branch master updated: Allow script in javadoc comments

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

rotty3000 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-cdi.git


The following commit(s) were added to refs/heads/master by this push:
     new d0cd8ac  Allow script in javadoc comments
     new fbb465f  Merge pull request #11 from fpapon/FIX-JAVADOC-2
d0cd8ac is described below

commit d0cd8ac6c7e26ce0f69dc4785a40057a2888e916
Author: Francois Papon <fr...@openobject.fr>
AuthorDate: Tue Dec 3 11:21:35 2019 +0100

    Allow script in javadoc comments
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index b4b62b7..ee07fbb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -243,6 +243,12 @@
 					<plugin>
 						<groupId>org.apache.maven.plugins</groupId>
 						<artifactId>maven-javadoc-plugin</artifactId>
+						<configuration>
+							<additionalJOptions>
+								<additionalJOption>-Xdoclint:none</additionalJOption>
+								<additionalJOption>--allow-script-in-comments</additionalJOption>
+							</additionalJOptions>
+						</configuration>
 						<executions>
 							<execution>
 							<id>attach-javadocs</id>