Skip to content

Commit

Permalink
Merge pull request #4 from NthPortal/dev
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
NthPortal committed Jan 17, 2017
2 parents 577b40e + 39d6578 commit 37dc395
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
organization := "com.nthportal"
name := "future-queue"
version := "1.0.0-SNAPSHOT"
version := "1.0.0"
isSnapshot := false

scalaVersion := "2.12.1"

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % Test
)


publishMavenStyle := true
licenses := Seq("The Apache License, Version 2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/NthPortal/future-queue"))

pomExtra :=
<scm>
<url>https://github.com/NthPortal/future-queue</url>
<connection>scm:git:git@github.com:NthPortal/future-queue.git</connection>
<developerConnection>scm:git:git@github.com:NthPortal/future-queue.git</developerConnection>
</scm>
<developers>
<developer>
<id>NthPortal</id>
<name>NthPortal</name>
<url>https://github.com/NthPortal</url>
</developer>
</developers>

0 comments on commit 37dc395

Please sign in to comment.