aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-cli/src/main
diff options
context:
space:
mode:
authorBrett Porter <brett@apache.org>2009-12-01 00:58:28 +0000
committerBrett Porter <brett@apache.org>2009-12-01 00:58:28 +0000
commite195adc06c86dafef0353f49993bd836963ce848 (patch)
treec8c4c54f886fa139548b513b320125ab602cd7f5 /archiva-cli/src/main
parent504f80e6a8e548a590e6723a697863d397b2689c (diff)
downloadarchiva-e195adc06c86dafef0353f49993bd836963ce848.tar.gz
archiva-e195adc06c86dafef0353f49993bd836963ce848.zip
[MRM-1025] remove some consumers that don't actually do anything
git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/MRM-1025@885638 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-cli/src/main')
-rw-r--r--archiva-cli/src/main/java/org/apache/maven/archiva/cli/ProjectReaderConsumer.java126
1 files changed, 0 insertions, 126 deletions
diff --git a/archiva-cli/src/main/java/org/apache/maven/archiva/cli/ProjectReaderConsumer.java b/archiva-cli/src/main/java/org/apache/maven/archiva/cli/ProjectReaderConsumer.java
deleted file mode 100644
index be19a1a01..000000000
--- a/archiva-cli/src/main/java/org/apache/maven/archiva/cli/ProjectReaderConsumer.java
+++ /dev/null
@@ -1,126 +0,0 @@
-package org.apache.maven.archiva.cli;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.File;
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
-import org.apache.maven.archiva.consumers.ConsumerException;
-import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
-import org.apache.maven.archiva.model.ArchivaProjectModel;
-import org.apache.maven.archiva.repository.project.ProjectModelReader;
-import org.apache.maven.archiva.repository.project.readers.ProjectModel400Reader;
-import org.apache.maven.archiva.xml.XMLException;
-
-/**
- * ProjectReaderConsumer
- *
- * @version $Id$
- *
- * @plexus.component role="org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer"
- * role-hint="read-poms"
- * instantiation-strategy="per-lookup"
- */
-public class ProjectReaderConsumer
- extends AbstractProgressConsumer
- implements KnownRepositoryContentConsumer
-{
- /**
- * @plexus.configuration default-value="read-poms"
- */
- private String id;
-
- /**
- * @plexus.configuration default-value="Read POMs and report anomolies."
- */
- private String description;
-
- private ProjectModelReader reader;
-
- private ManagedRepositoryConfiguration repo;
-
- private List<String> includes;
-
- public ProjectReaderConsumer()
- {
- reader = new ProjectModel400Reader();
-
- includes = new ArrayList<String>();
- includes.add( "**/*.pom" );
- }
-
- public String getDescription()
- {
- return description;
- }
-
- public String getId()
- {
- return id;
- }
-
- public boolean isPermanent()
- {
- return false;
- }
-
- public List<String> getExcludes()
- {
- return null;
- }
-
- public List<String> getIncludes()
- {
- return includes;
- }
-
- @Override
- public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
- throws ConsumerException
- {
- super.beginScan( repository, whenGathered );
- this.repo = repository;
- }
-
- @Override
- public void processFile( String path )
- throws ConsumerException
- {
- super.processFile( path );
-
- File pomFile = new File( repo.getLocation(), path );
- try
- {
- ArchivaProjectModel model = reader.read( pomFile );
- if ( model == null )
- {
- System.err.println( "Got null model on " + pomFile );
- }
- }
- catch ( XMLException e )
- {
- System.err.println( "Unable to process: " + pomFile );
- e.printStackTrace( System.out );
- }
- }
-}