Skip to content

Commit

Permalink
Merge pull request #3 from witi83/travis
Browse files Browse the repository at this point in the history
Intitial Travis support
  • Loading branch information
witi83 authored Apr 18, 2017
2 parents f763c30 + f86f399 commit 3359bee
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: scala

scala:
- 2.11.11
- 2.12.2

jdk:
- oraclejdk8
8 changes: 2 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
name := "akka-jwt"
organization := "com.github.witi83"
version := "1.3.0"
scalaVersion := "2.11.8"

scalacOptions := Seq("-deprecation",
"-encoding", "utf8",
"-feature",
"-target:jvm-1.8",
"-unchecked",
"-Yinline-warnings",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
Expand All @@ -18,8 +16,8 @@ scalacOptions := Seq("-deprecation",

libraryDependencies ++= {
Seq(
"com.typesafe.akka" %% "akka-http" % "10.0.1",
"com.nimbusds" % "nimbus-jose-jwt" % "4.33"
"com.typesafe.akka" %% "akka-http" % "10.0.5",
"com.nimbusds" % "nimbus-jose-jwt" % "4.36"
)
}

Expand Down Expand Up @@ -47,5 +45,3 @@ pomExtra := <scm>
<url>https://github.com/witi83</url>
</developer>
</developers>

credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.13
sbt.version=0.13.15
3 changes: 2 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
addSbtPlugin("com.dwijnand" % "sbt-travisci" % "1.1.0")

0 comments on commit 3359bee

Please sign in to comment.