private static boolean isArtifactRegistered()

in src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java [310:317]


    private static boolean isArtifactRegistered(Artifact a, List<EarModule> currentList) {
        for (EarModule em : currentList) {
            if (em.getArtifact().equals(a)) {
                return true;
            }
        }
        return false;
    }