Skip to content

Commit

Permalink
release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Witi committed Apr 18, 2017
1 parent dc587b5 commit 3278178
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Add the following dependency to your `build.sbt`,

```
resolvers += "witi83 at bintray" at "http://dl.bintray.com/witi83/maven"
libraryDependencies += "com.github.witi83" %% "akka-jwt" % "1.3.0"
libraryDependencies += "com.github.witi83" %% "akka-jwt" % "1.4.0"
```

Example
Expand Down
27 changes: 8 additions & 19 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "akka-jwt"
organization := "com.github.witi83"
version := "1.3.0"
version := "1.4.0"

scalacOptions := Seq("-deprecation",
"-encoding", "utf8",
Expand All @@ -21,27 +21,16 @@ libraryDependencies ++= {
)
}

publishMavenStyle := true

publishArtifact in Test := false

licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))

homepage := Some(url("https://github.com/witi83/akka-jwt"))

pomExtra := <scm>
<url>https://github.com/witi83/akka-jwt.git</url>
<connection>scm:git:https://github.com/witi83/akka-jwt.git</connection>
</scm>
<developers>
<developer>
<id>kikuomax</id>
<name>Kikuo Emoto</name>
<url>https://github.com/kikuomax</url>
</developer>
<developer>
<id>witi83</id>
<name>Witold Czaplewski</name>
<url>https://github.com/witi83</url>
</developer>
</developers>
scmInfo := Some(ScmInfo(url("https://github.com/witi83/akka-jwt"), "[email protected]:witi83/akka-jwt.git"))

developers += Developer("witi83", "Witold Czaplewski", "[email protected]", url("https://github.com/witi83"))

pomIncludeRepository := (_ => false)

bintrayPackage := "akka-jwt"

0 comments on commit 3278178

Please sign in to comment.