Artifactory
This plugin allows publishing to Artifactory.
Quickstart
import $ivy.`com.lihaoyi::mill-contrib-artifactory:`
import mill.contrib.artifactory.ArtifactoryPublishModule
object mymodule extends ArtifactoryPublishModule {
def artifactoryUri: String = "https://example.com/artifactory/my-repo"
def artifactorySnapshotUri: String = "https://example.com/artifactory/my-snapshot-repo"
...
}
Then in your terminal:
$ mill mymodule.publishArtifactory --credentials $ARTIFACTORY_USER:$ARTIFACTORY_PASSWORD