We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6bbf5 commit cbb66d6Copy full SHA for cbb66d6
libs/javalib/src/mill/javalib/publish/LocalIvyPublisher.scala
@@ -39,7 +39,9 @@ class LocalIvyPublisher(localIvyRepo: os.Path) {
39
artifact: Artifact,
40
contents: Map[os.SubPath, FileSetContents.Writable]
41
)(implicit ctx: TaskCtx.Log): Seq[os.Path] = {
42
- ctx.log.info(s"Publishing ${artifact} to ivy repo ${localIvyRepo}")
+ ctx.log.info(
43
+ s"Publishing ${artifact.group}:${artifact.id}:${artifact.version} to ivy repo ${localIvyRepo}"
44
+ )
45
val releaseDir = localIvyRepo / artifact.group / artifact.id / artifact.version
46
FileSetContents.writeTo(releaseDir, contents)
47
}
0 commit comments