Merge branch 'master' of github.com:hgomez/DependencyCheck into hgomez-master

Former-commit-id: 18b064ea5b733ba4f7d42f59a4c69472be1d3389
This commit is contained in:
Jeremy Long
2014-02-13 06:08:33 -05:00
9 changed files with 100 additions and 14 deletions

View File

@@ -95,6 +95,14 @@ public class ArchiveAnalyzer extends AbstractAnalyzer implements Analyzer {
EXTENSIONS.addAll(ZIPPABLES);
}
/**
* Add a list of file EXTENSIONS to be supported by this analyzer.
*
*/
public void addSupportedExtensions(Set<String> extraExtensions) {
EXTENSIONS.addAll(extraExtensions);
}
/**
* Returns a list of file EXTENSIONS supported by this analyzer.
*

View File

@@ -149,6 +149,10 @@ public final class Settings {
* The path to mono, if available.
*/
public static final String ANALYZER_ASSEMBLY_MONO_PATH = "analyzer.assembly.mono.path";
/**
* The extra extensions, if available.
*/
public static final String EXTRA_EXTENSIONS = "extra.extensions";
}
/**
* The properties file location.