support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java [565:574]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            artifacts.forEach(artifact -> {
                capBuilder.addDependency(artifact.getGroupId(), artifact.getArtifactId(), artifact.getClassifier());
                if (addDependency) {
                    catalogSpec.putArtifact(new CamelArtifact.Builder()
                        .groupId(artifact.getGroupId())
                        .artifactId(artifact.getArtifactId())
                        .classifier(artifact.getClassifier())
                        .build());
                }
            });
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java [593:602]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        artifacts.forEach(artifact -> {
        capBuilder.addDependency(artifact.getGroupId(), artifact.getArtifactId(), artifact.getClassifier());
        if (addDependency) {
            catalogSpec.putArtifact(new CamelArtifact.Builder()
                .groupId(artifact.getGroupId())
                .artifactId(artifact.getArtifactId())
                .classifier(artifact.getClassifier())
                .build());
        }
        });
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



