Package org.apache.geronimo.system.repository

Examples of org.apache.geronimo.system.repository.CopyArtifactTypeHandler


                throw new IllegalArgumentException("Can't create target plugin list file "+pluginList.getAbsolutePath());
            }
        }
        sourceRepo = new Maven1Repository(inFile);
        destRepo = new Maven2Repository(outFile);
        destRepo.setTypeHandler("car", new CopyArtifactTypeHandler());
        Properties props = new Properties();
        InputStream is = PluginRepositoryExporter.class.getResourceAsStream("/META-INF/product-versions.properties");
        if(is == null) {
            throw new IOException("Unable to locate /META-INF/product-versions.properties");
        }       
View Full Code Here

TOP

Related Classes of org.apache.geronimo.system.repository.CopyArtifactTypeHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.