in src/main/java/org/apache/sling/tooling/support/source/impl/SourceReferencesServlet.java [178:188]
private static void writeMavenGav(JSONWriter w, InputStream in) throws IOException {
Properties p = new Properties();
p.load(in);
w.object();
w.key(KEY_TYPE).value(VALUE_TYPE_MAVEN);
for ( String prop : new String[] { KEY_GROUP_ID, KEY_ARTIFACT_ID, KEY_VERSION} ) {
w.key(prop).value(p.getProperty(prop));
}
w.endObject();
}