* under the License.
*/
-import org.apache.commons.lang.StringUtils;
-import org.codehaus.plexus.logging.AbstractLogEnabled;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Properties;
+import org.apache.commons.lang.StringUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
/**
* PropagateErrorsPolicy - a policy applied on error to determine how to treat the error.
*
assertNull( "Found file: " + downloadedFile + "; but was expecting a failure", downloadedFile );
}
+ @SuppressWarnings("unchecked")
protected void assertNoTempFiles( File expectedFile )
{
File workingDir = expectedFile.getParentFile();
return delegate.resourceExists( resourceName );
}
+ @SuppressWarnings("unchecked")
public List<String> getFileList( String destinationDirectory )
throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException
{
delegate.connect( source, authenticationInfo, proxyInfoProvider );
}
+ @SuppressWarnings("deprecation")
public void openConnection()
throws ConnectionException, AuthenticationException
{
import org.apache.maven.archiva.database.Constraint;
import org.apache.maven.archiva.database.ObjectNotFoundException;
import org.apache.maven.archiva.database.constraints.RepositoryProblemByTypeConstraint;
+import org.apache.maven.archiva.model.RepositoryProblem;
import org.apache.maven.archiva.reporting.DataLimits;
import org.apache.maven.archiva.reporting.DynamicReportSource;
constraint = new RepositoryProblemByTypeConstraint( PROBLEM_TYPE_MISSING_DEPENDENCY );
}
- public List getData()
+ public List<RepositoryProblem> getData()
throws ObjectNotFoundException, ArchivaDatabaseException
{
return dao.getRepositoryProblemDAO().queryRepositoryProblems( constraint );
}
- public List getData( DataLimits limits )
+ public List<RepositoryProblem> getData( DataLimits limits )
throws ObjectNotFoundException, ArchivaDatabaseException
{
// TODO: implement limits.
*/
private String description;
- private List includes;
+ private List<String> includes;
public ProjectDependenciesConsumer()
{
- this.includes = new ArrayList();
+ this.includes = new ArrayList<String>();
this.includes.add( "pom" );
}
/* do nothing */
}
- public List getIncludedTypes()
+ public List<String> getIncludedTypes()
{
return includes;
}