Skip to content

Commit

Permalink
Prepared to release
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Chermenin committed Apr 8, 2020
1 parent c6ad3f9 commit 15d4f6d
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 31 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@
* limitations under the License.
*/

organization := "ru.chermenin"
name := "spark-states"

version := "0.2"

description := "Custom state store providers for Apache Spark"
homepage := Some(url("http://code.chermenin.ru/spark-states/"))

crossScalaVersions := Seq(Versions.Scala_2_11, Versions.Scala_2_12)

libraryDependencies ++= Seq(
Expand All @@ -32,3 +35,30 @@ libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % Versions.Spark % "test" classifier "tests",
"com.google.guava" % "guava-testlib" % "14.0.1" % "test"
)

scmInfo := Some(
ScmInfo(
url("https://github.com/chermenin/spark-states"),
"[email protected]:chermenin/spark-states.git"
)
)

developers := List(
Developer(
"chermenin",
"Alex Chermenin",
"[email protected]",
url("https://chermenin.ru")
)
)

licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))

publishMavenStyle := true

publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.2.8
sbt.version = 1.3.9
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.2")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")

0 comments on commit 15d4f6d

Please sign in to comment.