Skip to content

Commit

Permalink
WIP rework
Browse files Browse the repository at this point in the history
  • Loading branch information
vlmiroshnikov committed Jan 27, 2018
1 parent 94ccac3 commit d294b9a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ import sbt.Keys._
lazy val `aero` = project
.in(file("."))
.settings(
version := "0.1",
version := "0.1.1",
scalaVersion := "2.12.4",
scalacOptions := Settings.scalacOptions,
libraryDependencies ++= Settings.dependencies
libraryDependencies ++= Settings.dependencies,

organization := "org.aero",
bintrayRepository := "aero",
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
bintrayPackageLabels := Seq("scala", "aerospike")
)
4 changes: 4 additions & 0 deletions project/Settings.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import sbt._
import bintray.BintrayKeys._

object Settings {

Expand Down Expand Up @@ -26,3 +27,6 @@ object Settings {
"com.aerospike" % "aerospike-client" % Versions.aerospike
)
}



1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.2")

0 comments on commit d294b9a

Please sign in to comment.