Package com.jamierf.dropwizard.debpkg.packaging

Examples of com.jamierf.dropwizard.debpkg.packaging.ResourceExtractor


    }

    protected File extractResources(final Collection<Resource> resources, final Map<String, Object> parameters) throws MojoExecutionException {
        try {
            final File outputDir = new File(project.getBuild().getDirectory(), WORKING_DIRECTORY_NAME);
            new ResourceExtractor(parameters, log).extractResources(resources, outputDir);
            return outputDir;
        }
        catch (IOException e) {
            throw new MojoExecutionException("Failed to extract resources", e);
        }
View Full Code Here

TOP

Related Classes of com.jamierf.dropwizard.debpkg.packaging.ResourceExtractor

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.