Package com.lewisd.maven.lint.model

Examples of com.lewisd.maven.lint.model.Coordinates


            excludedCoordinates.add(Coordinates.parse(coordinate));
        }
    }

    private boolean isExcluded(final Object modelObject) {
        final Coordinates coords = modelUtil.getCoordinates(modelObject);
        for (final Coordinates excludedCoordinate : excludedCoordinates) {
            if (excludedCoordinate.matches(coords)) {
                return true;
            }
        }
View Full Code Here


        final String groupId = getGroupId(modelObject);
        final String artifactId = getArtifactId(modelObject);
        final String type = tryGetType(modelObject);
        final String version = getVersion(modelObject);

        return new Coordinates(groupId, artifactId, type, version);
    }
View Full Code Here

TOP

Related Classes of com.lewisd.maven.lint.model.Coordinates

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.