blob: 2d49be62061d11560158c3f0a75278da1d74f586 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.maven;
2
3import java.util.*;
4
5import aQute.bnd.service.*;
6import aQute.libg.reporter.*;
7
8public class MavenGroup implements BsnToMavenPath, Plugin {
9 String groupId = "";
10
11 public String[] getGroupAndArtifact(String bsn) {
12 String[] result = new String[2];
13 result[0] = groupId;
14 result[1] = bsn;
15 return result;
16 }
17
18 public void setProperties(Map<String, String> map) {
19 if (map.containsKey("groupId")) {
20 groupId = map.get("groupId");
21 }
22 }
23
24 public void setReporter(Reporter processor) {
25 }
26
27}