An open API service indexing awesome lists of open source software.

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

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).