Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.29 KB

README.md

File metadata and controls

39 lines (24 loc) · 1.29 KB

Scalatra is a tiny, Sinatra-like web framework for Scala.

Example

import org.scalatra._

class ScalatraExample extends ScalatraApp {
  get("/") {
    <h1>Hello, world!</h1>
  }
}

Documentation

Please see The Scalatra Book for more.

The old readme is deprecated in favor of the book, but may still be more advanced in a few subjects. If you find one, please let us know.

Latest version

The latest version of Scalatra is 2.0.2, and is published to Maven Central.

libraryDependencies += "org.scalatra" %% "scalatra" % "2.0.2"

Development version

The develop branch is published as 2.1.0-SNAPSHOT to OSSRH.

resolvers += "Sonatype Nexus Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies += "org.scalatra" %% "scalatra" % "2.1.0-SNAPSHOT"

Community