All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.maven.MavenGroup Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.maven;

import java.util.Map;

import aQute.bnd.service.Plugin;
import aQute.service.reporter.Reporter;

public class MavenGroup implements BsnToMavenPath, Plugin {
	String groupId = "";

	public String[] getGroupAndArtifact(String bsn) {
		String[] result = new String[2];
		result[0] = groupId;
		result[1] = bsn;
		return result;
	}

	public void setProperties(Map map) {
		if (map.containsKey("groupId")) {
			groupId = map.get("groupId");
		}
	}

	public void setReporter(Reporter processor) {}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy