tooling/hawtio-maven-plugin/src/main/java/io/hawt/maven/CamelMojo.java [78:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            throw new IllegalAccessError("Cannot resolve camel-core dependency from the Maven pom.xml file");
        }

        super.resolvedArtifacts(artifacts);
    }

    @Override
    protected boolean filterUnwantedArtifacts(Artifact artifact) {
        // filter out unwanted OSGi related JARs as some projects like ActiveMQ includes these dependencies
        // and you should use the camel-blueprint goal for running as OSGi
        if (artifact.getGroupId().equals("org.apache.aries.blueprint")) {
            return true;
        } else if (artifact.getGroupId().startsWith("org.ops4j")) {
            return true;
        } else if (artifact.getGroupId().equals("org.osgi")) {
            return true;
        } else if (artifact.getGroupId().equals("org.apache.felix")) {
            return true;
        }

        return super.filterUnwantedArtifacts(artifact);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tooling/hawtio-maven-plugin/src/main/java/io/hawt/maven/SpringMojo.java [59:79]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            throw new IllegalAccessError("Cannot resolve camel-core dependency from the Maven pom.xml file");
        }

        super.resolvedArtifacts(artifacts);
    }

    @Override
    protected boolean filterUnwantedArtifacts(Artifact artifact) {
        // filter out unwanted OSGi related JARs as some projects like ActiveMQ includes these dependencies
        // and you should use the blueprint goal for running as OSGi
        if (artifact.getGroupId().equals("org.apache.aries.blueprint")) {
            return true;
        } else if (artifact.getGroupId().startsWith("org.ops4j")) {
            return true;
        } else if (artifact.getGroupId().equals("org.osgi")) {
            return true;
        } else if (artifact.getGroupId().equals("org.apache.felix")) {
            return true;
        }

        return super.filterUnwantedArtifacts(artifact);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



