Package com.jamierf.dropwizard.debpkg.packaging

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


    }

    protected File createPackage(final Collection<Resource> resources, final File inputDir) throws MojoExecutionException {
        try {
            final URI homepage = project.getUrl() == null ? null : URI.create(project.getUrl());
            new PackageBuilder(project.getArtifactId(), project.getDescription(), homepage, log, Optional.fromNullable(pgp))
                    .createPackage(resources, inputDir, outputFile);
            return outputFile;
        }
        catch (PackagingException e) {
            throw new MojoExecutionException("Failed to create Debian package", e);
View Full Code Here

TOP

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

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.