atomos.maven/src/main/java/org/apache/felix/atomos/maven/index/AtomosIndexMojo.java [91:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Files.createDirectories(outputDirectory.toPath());

            LauncherBuilder builder = Launcher.builder();

            //Collect files using paths and filters
            Optional.ofNullable(classpath.paths)//
                .orElse(List.of())//
                .forEach(cc -> {
                    PathCollectorPluginConfig pc = LauncherBuilderUtil.processClasspathFile(
                        cc);
                    builder.addPlugin(PathCollectorPlugin.class, pc);
                });

            //Collect files from maven project
            Optional.ofNullable(classpath.maven)//
                .orElse(List.of())//
                .forEach(cc -> {
                    PathCollectorPluginConfig pc = LauncherBuilderUtil.processClasspathMaven(
                        project, cc);
                    builder.addPlugin(PathCollectorPlugin.class, pc);
                });
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



atomos.maven/src/main/java/org/apache/felix/atomos/maven/nativeimage/NativeImageMojo.java [80:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Files.createDirectories(outputDirectory.toPath());

            LauncherBuilder builder = Launcher.builder();

            //Collect files using paths and filters
            Optional.ofNullable(classpath.paths)//
                .orElse(List.of())//
                .forEach(cc -> {
                    PathCollectorPluginConfig pc = LauncherBuilderUtil.processClasspathFile(
                        cc);
                    builder.addPlugin(PathCollectorPlugin.class, pc);
                });

            //Collect files from maven project
            Optional.ofNullable(classpath.maven)//
                .orElse(List.of())//
                .forEach(cc -> {
                    PathCollectorPluginConfig pc = LauncherBuilderUtil.processClasspathMaven(
                        project, cc);
                    builder.addPlugin(PathCollectorPlugin.class, pc);
                });
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



