Skip to content
This repository has been archived by the owner on Feb 28, 2021. It is now read-only.

Commit

Permalink
mimic previous configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed May 8, 2015
1 parent 7b1ee65 commit bb9457f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "me.lessis"
name := "bintray-sbt"
version := "0.3.0-SNAPSHOT"
version := "0.3.0"
description := "package publisher for bintray.com"
homepage := Some(url(s"https://github.com/softprops/${name.value}#readme"))
sbtPlugin := true
Expand All @@ -26,5 +26,6 @@ pomExtra := (
</developers>
)
lsSettings
externalResolvers in LsKeys.lsync := (resolvers in bintray.Keys.bintray).value
bintraySettings
externalResolvers in LsKeys.lsync := (resolvers in bintray).value
bintrayRepository := "sbt-plugin-releases"
bintrayOrganization := Some("sbt")
9 changes: 9 additions & 0 deletions notes/0.3.0.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## changes

* auto plugins friendly. this plugin is now automatically enabled if it is added in plugins.sbt, no need to reference bintraySettings
* auto-imported keys. Keys no longer need refered to under the `bintray.Keys` namespace in your custom configuration
* all keys are typically prefixed with `bintray` now to be more inline with current sbt plugin interface trends
* `bintrayOrganization` now defaults to the name associated with your bintray credentials, including in the sbtPlugin case
* `bintrayRepository` now defaults to sbt-plugins, not sbt-plugin-releases to be more inline with the [sbt docs](http://www.scala-sbt.org/0.13/docs/Bintray-For-Plugins.html)

See the [readme](https://github.com/softprops/bintray-sbt#readme) for more details. This release included many changes to how this plugin works, hopefully for the better. If you find issues please [report them](https://github.com/softprops/bintray-sbt/issues/new)

0 comments on commit bb9457f

Please sign in to comment.