[
https://issues.apache.org/jira/browse/JUDDI-959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Matthieu Ghilain updated JUDDI-959:
-----------------------------------
Description:
Running mvn clean install -P dist with *java 1.8 and windows 7* fails.
See [^log.txt].
Solution is to add an option to the javadocs plugin in pom.xml of juddi-parent.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!--TODO- Remove when JavaDoc fixed
Necessary to build with Java 8 because now the
JavaDoc is checked for completeness and
it is not the case for all the classes in JUDDI -->
<configuration>
<aggregate>true</aggregate>
*<additionalparam>-Xdoclint:none</additionalparam>*
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
was:
Running mvn clean install -P dist with *java 1.8 and windows 7* fails.
See [^log.txt].
Solution is to add an option to the javadocs plugin in pom.xml of juddi-parent.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<!--TODO- Remove when JavaDoc fixed
Necessary to build with Java 8 because now the
JavaDoc is checked for completeness and
it is not the case for all the classes in JUDDI -->
<configuration>
<aggregate>true</aggregate>
*<additionalparam>-Xdoclint:none</additionalparam>*
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
> Running mvn clean install -Pdist fails with java 1.8 (javadocs generation
> problem)
> ----------------------------------------------------------------------------------
>
> Key: JUDDI-959
> URL: https://issues.apache.org/jira/browse/JUDDI-959
> Project: jUDDI
> Issue Type: Bug
> Components: juddi-tomcat
> Affects Versions: 3.3.3
> Reporter: Matthieu Ghilain
> Attachments: log.txt
>
>
> Running mvn clean install -P dist with *java 1.8 and windows 7* fails.
> See [^log.txt].
> Solution is to add an option to the javadocs plugin in pom.xml of
> juddi-parent.
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-javadoc-plugin</artifactId>
> <!--TODO- Remove when JavaDoc fixed
> Necessary to build with Java 8 because now the
> JavaDoc is checked for completeness and
> it is not the case for all the classes in JUDDI
> -->
> <configuration>
> <aggregate>true</aggregate>
> *<additionalparam>-Xdoclint:none</additionalparam>*
> </configuration>
> <executions>
> <execution>
> <id>aggregate</id>
> <goals>
> <goal>aggregate</goal>
> </goals>
> <phase>site</phase>
> </execution>
> </executions>
> </plugin>
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)