checkstyle corrections

This commit is contained in:
Jeremy Long
2016-07-23 07:45:48 -04:00
parent 9ae9c111e3
commit c253308284
22 changed files with 75 additions and 82 deletions

View File

@@ -18,7 +18,6 @@
package org.owasp.dependencycheck.taskdefs; package org.owasp.dependencycheck.taskdefs;
import java.io.File; import java.io.File;
import java.io.IOException;
import java.util.List; import java.util.List;
import org.apache.tools.ant.BuildException; import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;

View File

@@ -78,7 +78,7 @@ public class Purge extends Task {
private boolean failOnError = true; private boolean failOnError = true;
/** /**
* Get the value of failOnError * Get the value of failOnError.
* *
* @return the value of failOnError * @return the value of failOnError
*/ */
@@ -87,7 +87,7 @@ public class Purge extends Task {
} }
/** /**
* Set the value of failOnError * Set the value of failOnError.
* *
* @param failOnError new value of failOnError * @param failOnError new value of failOnError
*/ */

View File

@@ -37,7 +37,6 @@ import org.owasp.dependencycheck.utils.Settings;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import ch.qos.logback.core.FileAppender; import ch.qos.logback.core.FileAppender;
import java.util.logging.Level;
import org.owasp.dependencycheck.data.update.exception.UpdateException; import org.owasp.dependencycheck.data.update.exception.UpdateException;
import org.owasp.dependencycheck.exception.ExceptionCollection; import org.owasp.dependencycheck.exception.ExceptionCollection;
import org.owasp.dependencycheck.exception.ReportException; import org.owasp.dependencycheck.exception.ReportException;
@@ -77,6 +76,7 @@ public class App {
* Main CLI entry-point into the application. * Main CLI entry-point into the application.
* *
* @param args the command line arguments * @param args the command line arguments
* @return the exit code to return
*/ */
public int run(String[] args) { public int run(String[] args) {
int exitCode = 0; int exitCode = 0;
@@ -170,10 +170,10 @@ public class App {
exitCode = -12; exitCode = -12;
} catch (ExceptionCollection ex) { } catch (ExceptionCollection ex) {
if (ex.isFatal()) { if (ex.isFatal()) {
exitCode =-13; exitCode = -13;
LOGGER.error("One or more fatal errors occured"); LOGGER.error("One or more fatal errors occured");
} else { } else {
exitCode =-14; exitCode = -14;
} }
for (Throwable e : ex.getExceptions()) { for (Throwable e : ex.getExceptions()) {
LOGGER.error(e.getMessage()); LOGGER.error(e.getMessage());
@@ -301,6 +301,10 @@ public class App {
/** /**
* Only executes the update phase of dependency-check. * Only executes the update phase of dependency-check.
*
* @throws UpdateException thrown if there is an error updating
* @throws DatabaseException thrown if a fatal error occurred and a
* connection to the database could not be established
*/ */
private void runUpdateOnly() throws UpdateException, DatabaseException { private void runUpdateOnly() throws UpdateException, DatabaseException {
Engine engine = null; Engine engine = null;

View File

@@ -333,7 +333,7 @@ public class Engine implements FileFilter {
* during analysis * during analysis
*/ */
public void analyzeDependencies() throws ExceptionCollection { public void analyzeDependencies() throws ExceptionCollection {
List<Throwable> exceptions = new ArrayList<Throwable>(); final List<Throwable> exceptions = new ArrayList<Throwable>();
boolean autoUpdate = true; boolean autoUpdate = true;
try { try {
autoUpdate = Settings.getBoolean(Settings.KEYS.AUTO_UPDATE); autoUpdate = Settings.getBoolean(Settings.KEYS.AUTO_UPDATE);
@@ -359,7 +359,7 @@ public class Engine implements FileFilter {
LOGGER.error("{}\n\nUnable to continue dependency-check analysis.", ex.getMessage()); LOGGER.error("{}\n\nUnable to continue dependency-check analysis.", ex.getMessage());
LOGGER.debug("", ex); LOGGER.debug("", ex);
exceptions.add(ex); exceptions.add(ex);
throw new ExceptionCollection("Unable to continue dependency-check analysis.",exceptions, true); throw new ExceptionCollection("Unable to continue dependency-check analysis.", exceptions, true);
} catch (DatabaseException ex) { } catch (DatabaseException ex) {
LOGGER.error("{}\n\nUnable to continue dependency-check analysis.", ex.getMessage()); LOGGER.error("{}\n\nUnable to continue dependency-check analysis.", ex.getMessage());
LOGGER.debug("", ex); LOGGER.debug("", ex);
@@ -480,7 +480,7 @@ public class Engine implements FileFilter {
* Cycles through the cached web data sources and calls update on all of * Cycles through the cached web data sources and calls update on all of
* them. * them.
* *
* @throws UpdateException * @throws UpdateException thrown if the operation fails
*/ */
public void doUpdates() throws UpdateException { public void doUpdates() throws UpdateException {
LOGGER.info("Checking for updates"); LOGGER.info("Checking for updates");

View File

@@ -845,8 +845,8 @@ public class DependencyCheckScanAgent {
* Executes the Dependency-Check on the dependent libraries. * Executes the Dependency-Check on the dependent libraries.
* *
* @return the Engine used to scan the dependencies. * @return the Engine used to scan the dependencies.
* @throws org.owasp.dependencycheck.data.nvdcve.DatabaseException thrown if * @throws ExceptionCollection a collection of one or more exceptions that
* there is an exception connecting to the database * occurred during analysis.
*/ */
private Engine executeDependencyCheck() throws ExceptionCollection { private Engine executeDependencyCheck() throws ExceptionCollection {
populateSettings(); populateSettings();

View File

@@ -367,7 +367,7 @@ public class ArchiveAnalyzer extends AbstractFileTypeAnalyzer {
final String archiveExt = FileUtils.getFileExtension(archive.getName()).toLowerCase(); final String archiveExt = FileUtils.getFileExtension(archive.getName()).toLowerCase();
try { try {
if (ZIPPABLES.contains(archiveExt)) { if (ZIPPABLES.contains(archiveExt)) {
BufferedInputStream in = new BufferedInputStream(fis); final BufferedInputStream in = new BufferedInputStream(fis);
ensureReadableJar(archiveExt, in); ensureReadableJar(archiveExt, in);
extractArchive(new ZipArchiveInputStream(in), destination, engine); extractArchive(new ZipArchiveInputStream(in), destination, engine);
} else if ("tar".equals(archiveExt)) { } else if ("tar".equals(archiveExt)) {
@@ -413,7 +413,7 @@ public class ArchiveAnalyzer extends AbstractFileTypeAnalyzer {
private void ensureReadableJar(final String archiveExt, BufferedInputStream in) throws IOException { private void ensureReadableJar(final String archiveExt, BufferedInputStream in) throws IOException {
if ("jar".equals(archiveExt) && in.markSupported()) { if ("jar".equals(archiveExt) && in.markSupported()) {
in.mark(7); in.mark(7);
byte[] b = new byte[7]; final byte[] b = new byte[7];
in.read(b); in.read(b);
if (b[0] == '#' if (b[0] == '#'
&& b[1] == '!' && b[1] == '!'

View File

@@ -574,15 +574,13 @@ public class CPEAnalyzer implements Analyzer {
final String url = String.format(NVD_SEARCH_URL, URLEncoder.encode(vs.getName(), "UTF-8")); final String url = String.format(NVD_SEARCH_URL, URLEncoder.encode(vs.getName(), "UTF-8"));
final IdentifierMatch match = new IdentifierMatch("cpe", vs.getName(), url, IdentifierConfidence.EXACT_MATCH, conf); final IdentifierMatch match = new IdentifierMatch("cpe", vs.getName(), url, IdentifierConfidence.EXACT_MATCH, conf);
collected.add(match); collected.add(match);
} else //TODO the following isn't quite right is it? need to think about this guessing game a bit more. } else//TODO the following isn't quite right is it? need to think about this guessing game a bit more.
{ if (evVer.getVersionParts().size() <= dbVer.getVersionParts().size()
if (evVer.getVersionParts().size() <= dbVer.getVersionParts().size() && evVer.matchesAtLeastThreeLevels(dbVer)) {
&& evVer.matchesAtLeastThreeLevels(dbVer)) { if (bestGuessConf == null || bestGuessConf.compareTo(conf) > 0) {
if (bestGuessConf == null || bestGuessConf.compareTo(conf) > 0) { if (bestGuess.getVersionParts().size() < dbVer.getVersionParts().size()) {
if (bestGuess.getVersionParts().size() < dbVer.getVersionParts().size()) { bestGuess = dbVer;
bestGuess = dbVer; bestGuessConf = conf;
bestGuessConf = conf;
}
} }
} }
} }

View File

@@ -32,7 +32,6 @@ import org.owasp.dependencycheck.dependency.Dependency;
import org.owasp.dependencycheck.dependency.Evidence; import org.owasp.dependencycheck.dependency.Evidence;
import org.owasp.dependencycheck.exception.InitializationException; import org.owasp.dependencycheck.exception.InitializationException;
import org.owasp.dependencycheck.xml.suppression.PropertyType; import org.owasp.dependencycheck.xml.suppression.PropertyType;
import org.owasp.dependencycheck.xml.suppression.SuppressionParseException;
import org.owasp.dependencycheck.utils.DownloadFailedException; import org.owasp.dependencycheck.utils.DownloadFailedException;
import org.owasp.dependencycheck.utils.Downloader; import org.owasp.dependencycheck.utils.Downloader;
import org.owasp.dependencycheck.utils.FileUtils; import org.owasp.dependencycheck.utils.FileUtils;
@@ -279,7 +278,7 @@ public class HintAnalyzer extends AbstractAnalyzer implements Analyzer {
/** /**
* Loads the hint rules file. * Loads the hint rules file.
* *
* @throws SuppressionParseException thrown if the XML cannot be parsed. * @throws HintParseException thrown if the XML cannot be parsed.
*/ */
private void loadHintRules() throws HintParseException { private void loadHintRules() throws HintParseException {
final HintParser parser = new HintParser(); final HintParser parser = new HintParser();
@@ -327,7 +326,7 @@ public class HintAnalyzer extends AbstractAnalyzer implements Analyzer {
if (file != null) { if (file != null) {
try { try {
Hints newHints = parser.parseHints(file); final Hints newHints = parser.parseHints(file);
hints.getHintRules().addAll(newHints.getHintRules()); hints.getHintRules().addAll(newHints.getHintRules());
hints.getVendorDuplicatingHintRules().addAll(newHints.getVendorDuplicatingHintRules()); hints.getVendorDuplicatingHintRules().addAll(newHints.getVendorDuplicatingHintRules());
LOGGER.debug("{} hint rules were loaded.", hints.getHintRules().size()); LOGGER.debug("{} hint rules were loaded.", hints.getHintRules().size());

View File

@@ -39,7 +39,6 @@ import java.util.jar.Attributes;
import java.util.jar.JarEntry; import java.util.jar.JarEntry;
import java.util.jar.JarFile; import java.util.jar.JarFile;
import java.util.jar.Manifest; import java.util.jar.Manifest;
import java.util.logging.Level;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import java.util.zip.ZipEntry; import java.util.zip.ZipEntry;
import org.apache.commons.compress.utils.IOUtils; import org.apache.commons.compress.utils.IOUtils;
@@ -646,9 +645,7 @@ public class JarAnalyzer extends AbstractFileTypeAnalyzer {
* @return whether evidence was identified parsing the manifest * @return whether evidence was identified parsing the manifest
* @throws IOException if there is an issue reading the JAR file * @throws IOException if there is an issue reading the JAR file
*/ */
protected boolean parseManifest(Dependency dependency, protected boolean parseManifest(Dependency dependency, List<ClassNameInformation> classInformation) throws IOException {
List<ClassNameInformation> classInformation)
throws IOException {
boolean foundSomething = false; boolean foundSomething = false;
JarFile jar = null; JarFile jar = null;
try { try {
@@ -667,7 +664,6 @@ public class JarAnalyzer extends AbstractFileTypeAnalyzer {
final EvidenceCollection vendorEvidence = dependency.getVendorEvidence(); final EvidenceCollection vendorEvidence = dependency.getVendorEvidence();
final EvidenceCollection productEvidence = dependency.getProductEvidence(); final EvidenceCollection productEvidence = dependency.getProductEvidence();
final EvidenceCollection versionEvidence = dependency.getVersionEvidence(); final EvidenceCollection versionEvidence = dependency.getVersionEvidence();
String source = "Manifest"; String source = "Manifest";
String specificationVersion = null; String specificationVersion = null;
boolean hasImplementationVersion = false; boolean hasImplementationVersion = false;
@@ -784,7 +780,6 @@ public class JarAnalyzer extends AbstractFileTypeAnalyzer {
} }
} }
} }
for (Map.Entry<String, Attributes> item : manifest.getEntries().entrySet()) { for (Map.Entry<String, Attributes> item : manifest.getEntries().entrySet()) {
final String name = item.getKey(); final String name = item.getKey();
source = "manifest: " + name; source = "manifest: " + name;

View File

@@ -52,6 +52,9 @@ import org.owasp.dependencycheck.exception.InitializationException;
@Experimental @Experimental
public class RubyBundleAuditAnalyzer extends AbstractFileTypeAnalyzer { public class RubyBundleAuditAnalyzer extends AbstractFileTypeAnalyzer {
/**
* The logger.
*/
private static final Logger LOGGER = LoggerFactory.getLogger(RubyBundleAuditAnalyzer.class); private static final Logger LOGGER = LoggerFactory.getLogger(RubyBundleAuditAnalyzer.class);
/** /**
@@ -150,7 +153,7 @@ public class RubyBundleAuditAnalyzer extends AbstractFileTypeAnalyzer {
setEnabled(false); setEnabled(false);
cvedb.close(); cvedb.close();
cvedb = null; cvedb = null;
String msg = String.format("Exception from bundle-audit process: %s. Disabling %s", ae.getCause(), ANALYZER_NAME); final String msg = String.format("Exception from bundle-audit process: %s. Disabling %s", ae.getCause(), ANALYZER_NAME);
throw new InitializationException(msg, ae); throw new InitializationException(msg, ae);
} catch (IOException ex) { } catch (IOException ex) {
setEnabled(false); setEnabled(false);
@@ -162,12 +165,12 @@ public class RubyBundleAuditAnalyzer extends AbstractFileTypeAnalyzer {
exitValue = process.waitFor(); exitValue = process.waitFor();
} catch (InterruptedException ex) { } catch (InterruptedException ex) {
setEnabled(false); setEnabled(false);
String msg = String.format("Bundle-audit process was interupted. Disabling %s", ANALYZER_NAME); final String msg = String.format("Bundle-audit process was interupted. Disabling %s", ANALYZER_NAME);
throw new InitializationException(msg); throw new InitializationException(msg);
} }
if (0 == exitValue) { if (0 == exitValue) {
setEnabled(false); setEnabled(false);
String msg = String.format("Unexpected exit code from bundle-audit process. Disabling %s: %s", ANALYZER_NAME, exitValue); final String msg = String.format("Unexpected exit code from bundle-audit process. Disabling %s: %s", ANALYZER_NAME, exitValue);
throw new InitializationException(msg); throw new InitializationException(msg);
} else { } else {
BufferedReader reader = null; BufferedReader reader = null;

View File

@@ -48,8 +48,8 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/** /**
* An in memory lucene index that contains the vendor/product combinations from the CPE (application) identifiers within the NVD * An in memory lucene index that contains the vendor/product combinations from
* CVE data. * the CPE (application) identifiers within the NVD CVE data.
* *
* @author Jeremy Long * @author Jeremy Long
*/ */
@@ -144,19 +144,6 @@ public final class CpeMemoryIndex {
return openState; return openState;
} }
/**
* Creates the indexing analyzer for the CPE Index.
*
* @return the CPE Analyzer.
* @deprecated the search field analyzer must be used to include the token concatenating filter.
*/
@Deprecated
private Analyzer createIndexingAnalyzer() {
final Map<String, Analyzer> fieldAnalyzers = new HashMap<String, Analyzer>();
fieldAnalyzers.put(Fields.DOCUMENT_KEY, new KeywordAnalyzer());
return new PerFieldAnalyzerWrapper(new FieldAnalyzer(LuceneUtils.CURRENT_VERSION), fieldAnalyzers);
}
/** /**
* Creates an Analyzer for searching the CPE Index. * Creates an Analyzer for searching the CPE Index.
* *
@@ -275,7 +262,8 @@ public final class CpeMemoryIndex {
* @param maxQueryResults the maximum number of documents to return * @param maxQueryResults the maximum number of documents to return
* @return the TopDocs found by the search * @return the TopDocs found by the search
* @throws ParseException thrown when the searchString is invalid * @throws ParseException thrown when the searchString is invalid
* @throws IOException is thrown if there is an issue with the underlying Index * @throws IOException is thrown if there is an issue with the underlying
* Index
*/ */
public TopDocs search(String searchString, int maxQueryResults) throws ParseException, IOException { public TopDocs search(String searchString, int maxQueryResults) throws ParseException, IOException {
if (searchString == null || searchString.trim().isEmpty()) { if (searchString == null || searchString.trim().isEmpty()) {

View File

@@ -34,7 +34,7 @@ import org.apache.lucene.util.Version;
* index the CPE fields vendor and product.</p> * index the CPE fields vendor and product.</p>
* *
* @author Jeremy Long * @author Jeremy Long
* @Deprecated the field analyzer should not be used, instead use the * @deprecated the field analyzer should not be used, instead use the
* SearchFieldAnalyzer so that the token analyzing filter is used. * SearchFieldAnalyzer so that the token analyzing filter is used.
*/ */
@Deprecated @Deprecated

View File

@@ -68,10 +68,9 @@ public class CveDB {
private ResourceBundle statementBundle = null; private ResourceBundle statementBundle = null;
/** /**
* Creates a new CveDB object and opens the database * Creates a new CveDB object and opens the database connection. Note, the
* connection. Note, the connection must be closed by the caller by calling * connection must be closed by the caller by calling the close method.
* the close method. ======= Does the underlying connection support batch * ======= Does the underlying connection support batch operations?
* operations?
*/ */
private boolean batchSupported; private boolean batchSupported;

View File

@@ -43,9 +43,10 @@ public class CPEHandler extends DefaultHandler {
/** /**
* The Starts with expression to filter CVE entries by CPE. * The Starts with expression to filter CVE entries by CPE.
*/ */
private static final String CPE_STARTS_WITH = Settings.getString(Settings.KEYS.CVE_CPE_STARTS_WITH_FILTER,"cpe:/a:"); private static final String CPE_STARTS_WITH = Settings.getString(Settings.KEYS.CVE_CPE_STARTS_WITH_FILTER, "cpe:/a:");
/** /**
* The text content of the node being processed. This can be used during the end element event. * The text content of the node being processed. This can be used during the
* end element event.
*/ */
private StringBuilder nodeText = null; private StringBuilder nodeText = null;
/** /**
@@ -77,7 +78,8 @@ public class CPEHandler extends DefaultHandler {
* @param localName the local name * @param localName the local name
* @param qName the qualified name * @param qName the qualified name
* @param attributes the attributes * @param attributes the attributes
* @throws SAXException thrown if there is an exception processing the element * @throws SAXException thrown if there is an exception processing the
* element
*/ */
@Override @Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
@@ -128,7 +130,8 @@ public class CPEHandler extends DefaultHandler {
* @param ch the char array * @param ch the char array
* @param start the start position of the data read * @param start the start position of the data read
* @param length the length of the data read * @param length the length of the data read
* @throws SAXException thrown if there is an exception processing the characters * @throws SAXException thrown if there is an exception processing the
* characters
*/ */
@Override @Override
public void characters(char[] ch, int start, int length) throws SAXException { public void characters(char[] ch, int start, int length) throws SAXException {
@@ -138,12 +141,14 @@ public class CPEHandler extends DefaultHandler {
} }
/** /**
* Handles the end element event. Stores the CPE data in the Cve Database if the cpe item node is ending. * Handles the end element event. Stores the CPE data in the Cve Database if
* the cpe item node is ending.
* *
* @param uri the element's uri * @param uri the element's uri
* @param localName the local name * @param localName the local name
* @param qName the qualified name * @param qName the qualified name
* @throws SAXException thrown if there is an exception processing the element * @throws SAXException thrown if there is an exception processing the
* element
*/ */
@Override @Override
public void endElement(String uri, String localName, String qName) throws SAXException { public void endElement(String uri, String localName, String qName) throws SAXException {
@@ -182,7 +187,8 @@ public class CPEHandler extends DefaultHandler {
// <editor-fold defaultstate="collapsed" desc="The Element Class that maintains state information about the current node"> // <editor-fold defaultstate="collapsed" desc="The Element Class that maintains state information about the current node">
/** /**
* A simple class to maintain information about the current element while parsing the CPE XML. * A simple class to maintain information about the current element while
* parsing the CPE XML.
*/ */
protected static final class Element { protected static final class Element {

View File

@@ -36,6 +36,9 @@ import org.slf4j.LoggerFactory;
*/ */
public class UpdateableNvdCve implements Iterable<NvdCveInfo>, Iterator<NvdCveInfo> { public class UpdateableNvdCve implements Iterable<NvdCveInfo>, Iterator<NvdCveInfo> {
/**
* A reference to the logger.
*/
private static final Logger LOGGER = LoggerFactory.getLogger(UpdateableNvdCve.class); private static final Logger LOGGER = LoggerFactory.getLogger(UpdateableNvdCve.class);
/** /**
* A collection of sources of data. * A collection of sources of data.

View File

@@ -140,6 +140,7 @@ public class ExceptionCollection extends Exception {
* Adds an exception to the collection. * Adds an exception to the collection.
* *
* @param ex the exception to add * @param ex the exception to add
* @param fatal flag indicating if this is a fatal error
*/ */
public void addException(Throwable ex, boolean fatal) { public void addException(Throwable ex, boolean fatal) {
addException(ex); addException(ex);
@@ -153,7 +154,7 @@ public class ExceptionCollection extends Exception {
private boolean fatal = false; private boolean fatal = false;
/** /**
* Get the value of fatal * Get the value of fatal.
* *
* @return the value of fatal * @return the value of fatal
*/ */
@@ -162,7 +163,7 @@ public class ExceptionCollection extends Exception {
} }
/** /**
* Set the value of fatal * Set the value of fatal.
* *
* @param fatal new value of fatal * @param fatal new value of fatal
*/ */

View File

@@ -201,7 +201,7 @@ public class HintHandler extends DefaultHandler {
/** /**
* Handles the end element event. * Handles the end element event.
* *
* @param uri the element's uri * @param uri the element's URI
* @param localName the local name * @param localName the local name
* @param qName the qualified name * @param qName the qualified name
* @throws SAXException thrown if there is an exception processing the * @throws SAXException thrown if there is an exception processing the

View File

@@ -32,7 +32,7 @@ public class Hints {
private List<HintRule> hintRules; private List<HintRule> hintRules;
/** /**
* Get the value of hintRules * Get the value of hintRules.
* *
* @return the value of hintRules * @return the value of hintRules
*/ */
@@ -41,7 +41,7 @@ public class Hints {
} }
/** /**
* Set the value of hintRules * Set the value of hintRules.
* *
* @param hintRules new value of hintRules * @param hintRules new value of hintRules
*/ */
@@ -55,7 +55,7 @@ public class Hints {
private List<VendorDuplicatingHintRule> vendorDuplicatingHintRules; private List<VendorDuplicatingHintRule> vendorDuplicatingHintRules;
/** /**
* Get the value of vendorDuplicatingHintRules * Get the value of vendorDuplicatingHintRules.
* *
* @return the value of vendorDuplicatingHintRules * @return the value of vendorDuplicatingHintRules
*/ */
@@ -64,12 +64,11 @@ public class Hints {
} }
/** /**
* Set the value of vendorDuplicatingHintRules * Set the value of vendorDuplicatingHintRules.
* *
* @param vendorDuplicatingHintRules new value of vendorDuplicatingHintRules * @param vendorDuplicatingHintRules new value of vendorDuplicatingHintRules
*/ */
public void setVendorDuplicatingHintRules(List<VendorDuplicatingHintRule> vendorDuplicatingHintRules) { public void setVendorDuplicatingHintRules(List<VendorDuplicatingHintRule> vendorDuplicatingHintRules) {
this.vendorDuplicatingHintRules = vendorDuplicatingHintRules; this.vendorDuplicatingHintRules = vendorDuplicatingHintRules;
} }
} }

View File

@@ -25,7 +25,6 @@ import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Locale; import java.util.Locale;
import java.util.Set; import java.util.Set;
import org.apache.maven.MavenExecutionException;
import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase; import org.apache.maven.plugins.annotations.LifecyclePhase;
@@ -130,9 +129,9 @@ public class AggregateMojo extends BaseDependencyCheckMojo {
try { try {
writeReports(engine, current, outputDir); writeReports(engine, current, outputDir);
} catch (ReportException ex) { } catch (ReportException ex) {
ExceptionCollection exCol = (ExceptionCollection) engine.getExecutionRoot().getContextValue(AGGREGATE_EXCEPTIONS); ExceptionCollection exCol = (ExceptionCollection) engine.getExecutionRoot().getContextValue(AGGREGATE_EXCEPTIONS);
if (exCol == null) { if (exCol == null) {
exCol = new ExceptionCollection("Error writing aggregate report",ex); exCol = new ExceptionCollection("Error writing aggregate report", ex);
} else { } else {
exCol.addException(ex); exCol.addException(ex);
} }

View File

@@ -85,6 +85,7 @@ public abstract class BaseDependencyCheckMojo extends AbstractMojo implements Ma
/** /**
* Returns if the mojo should fail the build if an exception occurs. * Returns if the mojo should fail the build if an exception occurs.
*
* @return whether or not the mojo should fail the build * @return whether or not the mojo should fail the build
*/ */
protected boolean isFailOnError() { protected boolean isFailOnError() {
@@ -1079,8 +1080,8 @@ public abstract class BaseDependencyCheckMojo extends AbstractMojo implements Ma
* scan data between the "check" and "aggregate" phase. * scan data between the "check" and "aggregate" phase.
* *
* @param project the Maven project to read the data file from * @param project the Maven project to read the data file from
* @return a <code>MavenEngine</code> object populated with dependencies if the * @return a <code>MavenEngine</code> object populated with dependencies if
* serialized data file exists; otherwise <code>null</code> is returned * the serialized data file exists; otherwise <code>null</code> is returned
*/ */
protected List<Dependency> readDataFile(MavenProject project) { protected List<Dependency> readDataFile(MavenProject project) {
final Object oPath = project.getContextValue(this.getDataFileContextKey()); final Object oPath = project.getContextValue(this.getDataFileContextKey());

View File

@@ -106,7 +106,7 @@ public class CheckMojo extends BaseDependencyCheckMojo {
writeReports(engine, getProject(), getCorrectOutputDirectory()); writeReports(engine, getProject(), getCorrectOutputDirectory());
} catch (ReportException ex) { } catch (ReportException ex) {
if (this.isFailOnError()) { if (this.isFailOnError()) {
if (exCol!= null) { if (exCol != null) {
exCol.addException(ex); exCol.addException(ex);
} else { } else {
exCol = new ExceptionCollection("Unable to write the dependency-check report", ex); exCol = new ExceptionCollection("Unable to write the dependency-check report", ex);

View File

@@ -111,5 +111,4 @@ public class UpdateMojo extends BaseDependencyCheckMojo {
public String getDescription(Locale locale) { public String getDescription(Locale locale) {
return "Updates the local cache of the NVD data from NIST."; return "Updates the local cache of the NVD data from NIST.";
} }
} }