Scalatra is a tiny, Sinatra-like web framework for Scala.
import org.scalatra._
class ScalatraExample extends ScalatraServlet {
get("/") {
<h1>Hello, world!</h1>
}
}Please see The Scalatra Book for more.
The latest version of Scalatra is 2.0.4, and is published to Maven Central.
libraryDependencies += "org.scalatra" %% "scalatra" % "2.0.4"The develop branch is published as 2.1.0-SNAPSHOT to OSSRH. A milestone build is available as 2.1.0.M2.
Starting with 2.1.x, Scalatra is no longer crossbuilt. This means no %% operator in the library dependency.
resolvers += "Sonatype Nexus Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies += "org.scalatra" % "scalatra" % "2.1.0-SNAPSHOT"- Mailing list: scalatra-user
- IRC: #scalatra on irc.freenode.org