Skip to content

Commit

Permalink
Use Wildcard When jvm_exclude Artifact is None
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Gustafson committed Apr 17, 2024
1 parent d2a9a46 commit 3792cea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/python/pants/jvm/target_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ def to_coord_str(self) -> str:
result = self.group
if self.artifact:
result += f":{self.artifact}"
else:
result += ":*"
return result


Expand Down

0 comments on commit 3792cea

Please sign in to comment.