Package com.jamierf.dropwizard.debpkg.transforms

Examples of com.jamierf.dropwizard.debpkg.transforms.ResourceDataProducer


        this.log = log;
        this.pgpConfiguration = pgpConfiguration;
    }

    public void createPackage(final Collection<Resource> resources, final File inputDir, final File debFile) throws PackagingException {
        final Collection<DataProducer> dataProducers = Collections2.transform(resources, new ResourceDataProducer(inputDir));
        final DebMaker debMaker = new DebMaker(log, dataProducers, Collections.<DataProducer>emptySet());

        debMaker.setDeb(debFile);
        debMaker.setControl(new File(inputDir, "control"));
View Full Code Here

TOP

Related Classes of com.jamierf.dropwizard.debpkg.transforms.ResourceDataProducer

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.