Skip to content

Commit

Permalink
🐛 Add artifactID to maven.default.index strings (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Montleon <[email protected]>
  • Loading branch information
jmontleon authored Sep 12, 2023
1 parent a8a1b80 commit 82e376a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/export.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public static void main(String[] args) throws Exception {
{
Document d = storedFields.document(i);
if (d.get("u") != null) {
groupIds.add(d.get("u").split("\\|")[0] + ".*");
String[] artifact = d.get("u").split("\\|");
groupIds.add(artifact[0] + "." + artifact[1] + ".*");
}
}

Expand Down

0 comments on commit 82e376a

Please sign in to comment.