https://github.com/jw3/sbt-artifactory
SBT Plugin for publishing to Artifactory
https://github.com/jw3/sbt-artifactory
artifactory publishing sbt
Last synced: 12 months ago
JSON representation
SBT Plugin for publishing to Artifactory
- Host: GitHub
- URL: https://github.com/jw3/sbt-artifactory
- Owner: jw3
- License: apache-2.0
- Created: 2017-06-30T18:52:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-04T13:55:11.000Z (almost 9 years ago)
- Last Synced: 2025-06-27T22:03:42.845Z (12 months ago)
- Topics: artifactory, publishing, sbt
- Language: Scala
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SBT Artifactory Publisher #
### Configuration
```sbtshell
addSbtPlugin("com.github.jw3" % "sbt-artifactory" % "0.2")
```
The plugin has three configuration settings and can be configured through the environment or SBT setting keys
- Hostname: required
- Username: optional
- Password or Token: optional
#### Environment
- `ARTIFACTORY_DEPLOY_HOST`: String; hostname of artifactory server
- `ARTIFACTORY_DEPLOY_USER`: String; username to deploy artifacts with
- `ARTIFACTORY_DEPLOY_PASS`: String; api token belonging to user specified with `ARTIFACTORY_DEPLOY_USER`
- `ARTIFACTORY_DEPLOY_TOKEN`: String; alias used for password if `ARTIFACTORY_DEPLOY_PASS` is not set
#### Setting Keys
- `hostname in Artifactory`: String; required
- `username in Artifactory`: String; optional
- `password in Artifactory`: String; optional
## Resolving
Currently published to https://bintray.com/jw3/sbt-plugin-releases
## Disclaimer ##
I dont yet know how to correctly write SBT plugins, so buyer beware.
## Bugs and Feedback
For bugs, questions, and discussions please use the [Github Issues](https://github.com/jw3/sbt-artifactory/issues).