You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ma...@apache.org on 2015/04/06 02:09:31 UTC

svn commit: r1671457 - in /oodt/trunk: CHANGES.txt core/pom.xml

Author: mattmann
Date: Mon Apr  6 00:09:30 2015
New Revision: 1671457

URL: http://svn.apache.org/r1671457
Log:
- fix for OODT-823 OODT JDK8 Maven3 build errors contributed by Aditya Dhulipala.

Modified:
    oodt/trunk/CHANGES.txt
    oodt/trunk/core/pom.xml

Modified: oodt/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1671457&r1=1671456&r2=1671457&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Mon Apr  6 00:09:30 2015
@@ -2,6 +2,8 @@ Apache OODT Change Log
 ======================
 Release 0.9 - Current Development
 
+* OODT-823 OODT JDK8 Maven3 build errors (Aditya Dhulipala via mattmann)
+
 * OODT-715 SolrIndexer fails to index when numProducts == pageSize (pramirez, mdstarch via mattmann)
 
 * OODT-821 OODT-821 FMProd RDF conf shouldn't use EDRN as a default namespace for keys and for types (mattmann)

Modified: oodt/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/core/pom.xml?rev=1671457&r1=1671456&r2=1671457&view=diff
==============================================================================
--- oodt/trunk/core/pom.xml (original)
+++ oodt/trunk/core/pom.xml Mon Apr  6 00:09:30 2015
@@ -318,6 +318,9 @@ the License.
                         <goals>
                             <goal>javadoc</goal>
                         </goals>
+                        <configuration>
+                            <additionalparam>-Xdoclint:none</additionalparam>
+                        </configuration>
                     </execution>
                 </executions>
             </plugin>