updated autor email address to my owasp address

Former-commit-id: f6c6715b3fc1461afd543fb8d89b81fea1a8bbed
This commit is contained in:
Jeremy Long
2013-05-17 23:57:59 -04:00
parent 805bc85ea9
commit 033cbf696a
88 changed files with 107 additions and 88 deletions

View File

@@ -33,7 +33,7 @@ import org.apache.commons.cli.PosixParser;
/**
* A utility to parse command line arguments for the DependencyCheck.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public final class CliParser {

View File

@@ -35,7 +35,7 @@ import org.apache.commons.lang.StringUtils;
* <p>Note, the parser contained in this class expects the version numbers to be
* separated by periods. If a different seperator is used the parser will likely
* fail.</p>
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public class DependencyVersion implements Iterable {

View File

@@ -25,7 +25,7 @@ import java.util.regex.Pattern;
* <p>A utility class to extract version numbers from file names (or other strings
* containing version numbers.</p>
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public final class DependencyVersionUtil {
/**

View File

@@ -23,7 +23,7 @@ import java.io.IOException;
/**
* An exception used when a download fails.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public class DownloadFailedException extends IOException {

View File

@@ -36,7 +36,7 @@ import java.util.zip.InflaterInputStream;
/**
* A utility to download files from the Internet.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public final class Downloader {

View File

@@ -25,7 +25,7 @@ import java.io.IOException;
/**
* A collection of utilities for processing information about files.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public final class FileUtils {

View File

@@ -23,7 +23,7 @@ import java.io.IOException;
/**
* An exception used when an error occurs reading a setting.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public class InvalidSettingException extends IOException {

View File

@@ -26,7 +26,7 @@ import java.io.InputStream;
* processes the stream from closing it. This is necessary when dealing with
* things like JAXB and zipInputStreams.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public class NonClosingStream extends FilterInputStream {

View File

@@ -29,7 +29,7 @@ import java.util.logging.Logger;
/**
* A simple settings container that wraps the dependencycheck.properties file.
*
* @author Jeremy Long (jeremy.long@gmail.com)
* @author Jeremy Long (jeremy.long@owasp.org)
*/
public final class Settings {