Skip to content

Commit

Permalink
Bumping versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
luksow committed Aug 3, 2017
1 parent 519460d commit 211b61f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

[![Join the chat at https://gitter.im/theiterators/akka-http-microservice](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/theiterators/akka-http-microservice?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

This project demonstrates the [Akka HTTP](http://doc.akka.io/docs/akka-stream-and-http-experimental/current/scala.html) library and Scala to write a simple REST (micro)service. The project shows the following tasks that are typical for most Akka HTTP-based projects:
This project demonstrates the [Akka HTTP](http://doc.akka.io/docs/akka-http/current/scala/http/) library and Scala to write a simple REST (micro)service. The project shows the following tasks that are typical for most Akka HTTP-based projects:

* starting standalone HTTP server,
* handling file-based configuration,
Expand All @@ -17,6 +17,8 @@ This project demonstrates the [Akka HTTP](http://doc.akka.io/docs/akka-stream-an

The service in the template provides two REST endpoints - one which gives GeoIP info for given IP and another for calculating geographical distance between given pair of IPs. The project uses the service [ip-api](http://ip-api.com/) which offers JSON IP and GeoIP REST API for free for non-commercial use.

If you want to read more thorough explaination, check out [tutorial](https://github.com/theiterators/akka-http-microservice/blob/master/tutorial/index.html).

[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)

## Usage
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Expand Up @@ -3,13 +3,13 @@ enablePlugins(JavaAppPackaging)
name := "akka-http-microservice"
organization := "com.theiterators"
version := "1.0"
scalaVersion := "2.11.8"
scalaVersion := "2.12.3"

scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")

libraryDependencies ++= {
val akkaV = "2.4.16"
val akkaHttpV = "10.0.1"
val akkaV = "2.5.3"
val akkaHttpV = "10.0.9"
val scalaTestV = "3.0.1"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=0.13.11
sbt.version=0.13.16
4 changes: 2 additions & 2 deletions project/plugins.sbt
@@ -1,5 +1,5 @@
addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0")

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.3")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.2.0-M7")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.2.0")

0 comments on commit 211b61f

Please sign in to comment.