static Properties loadOutputProperties()

in src/main/java/org/apache/maven/plugins/artifact/buildinfo/BuildInfoWriter.java [277:285]


    static Properties loadOutputProperties(File buildinfo) throws MojoExecutionException {
        Properties prop = PropertyUtils.loadOptionalProperties(buildinfo);
        for (String name : prop.stringPropertyNames()) {
            if (!name.startsWith("outputs.") || name.endsWith(".coordinates")) {
                prop.remove(name);
            }
        }
        return prop;
    }