Package com.jamierf.dropwizard.debpkg.filter

Examples of com.jamierf.dropwizard.debpkg.filter.DependencyFilter


    private DependencyFilter filter;

    @Before
    public void setUp() {
        filter = new DependencyFilter("com.jamierf", "test");
    }
View Full Code Here


    }

    protected void validateApplicationConfiguration(final File resourcesDir) throws MojoExecutionException {
        try {
            final Optional<Dependency> dropwizardDependency = Iterables.tryFind(project.getModel().getDependencies(),
                    new DependencyFilter(DROPWIZARD_GROUP_ID, DROPWIZARD_ARTIFACT_ID));
            if (!dropwizardDependency.isPresent()) {
                log.warn("Failed to find Dropwizard dependency in project. Skipping configuration validation.");
                return;
            }
View Full Code Here

TOP

Related Classes of com.jamierf.dropwizard.debpkg.filter.DependencyFilter

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.