My organization uses JFROG artifactory for distribution of all jars.
So far I have always used SBT for my Scala development. But now when i am searching for ways to publish jars built by SBT into JFROG artifactory, I only find this plugin on github which is in "alpha" state
https://github.com/JFrogDev/artifactory-sbt-plugin
I want to know if this plugin is the only way to publish jars from sbt to JFrog artifactory? or are there better means.
since this plugin says that its in alpha... I don't think my org will be ready to use this.
What are others doing when using artifactory and scala? are you using maven xml to build and publish jars to artifactory?
publishTo
is a setting, and in sbt a setting can't depend on a task. – Cunning