LDAP-337 - Enable Java 8 build.

Fixed various JavaDoc errors that would otherwise cause the build to fail with JDK 8.
Upgraded Jacoco Plugin Version to support Java 8.
Increased heap to javadoc task to speed up doc generation.

The build now works fine with Java 7 and Java 8.
This commit is contained in:
Thomas Darimont
2015-08-03 22:32:19 +02:00
parent 9cb75f0014
commit 963232f9a9
56 changed files with 151 additions and 168 deletions

View File

@@ -47,7 +47,7 @@ import java.util.NoSuchElementException;
* The {@link LdifParser LdifParser} does ignores <i>changetype</i> LDIF entries as their usefulness in the
* context of an application has yet to be determined.
* <p>
* <b>Design</b><br/>
* <b>Design</b><br>
* {@link LdifParser LdifParser} provides the main interface for operation but requires three supporting classes to
* enable operation:
* <ul>
@@ -57,7 +57,7 @@ import java.util.NoSuchElementException;
* </ul>
* Together, these 4 classes read from the resource line by line and translate the data into objects for use.
* <p>
* <b>Usage</b><br/>
* <b>Usage</b><br>
* {@link #getRecord() getRecord()} reads the next available record from the resource. Lines are read and
* passed to the {@link SeparatorPolicy SeparatorPolicy} for interpretation. The parser continues to read
* lines and appends them to the buffer until it encounters the start of a new attribute or an end of record

View File

@@ -59,7 +59,7 @@ public interface Parser {
/**
* Resets the line read parser.
*
* @throws Exception if a problem is encountered while trying to reset the resource.
* @throws IOException if a problem is encountered while trying to reset the resource.
*/
void reset() throws IOException;

View File

@@ -282,7 +282,7 @@ public class DefaultAttributeValidationPolicy implements AttributeValidationPoli
* <ol>
* <li>A standard attribute pattern of the form: ATTR_ID[;options]: VALUE</li>
* <li>A Base64 attribute pattern of the form: ATTR_ID[;options]:: BASE64_VALUE</li>
* <li>A url attribute pattern of the form: ATTR_ID[;options]:< URL_VALUE</li>
* <li>A url attribute pattern of the form: ATTR_ID[;options]:&lt; URL_VALUE</li>
* </ol>
* <p>
* Upon success an LdapAttribute object is returned.