Skip to content

seratch/airframe

 
 

Repository files navigation

Airframe Gitter Chat Build Status Latest version Maven Central codecov Scala.js Scaladoc

Airframe https://wvlet.org/airframe is a collection of lightweight libraries useful for building full-fledged applications in Scala.

See Documentation for further details.

Resources

Getting Started

Latest version Maven Central

build.sbt

Airframe is a collection of Scala libraries. You can include one or more of them to your dependencies:

val AIRFRAME_VERSION = "(version)"

# For Scala 2.11, 2.12, and 2.13
libraryDependencies ++= Seq(
  "org.wvlet.airframe" %% "airframe"           % AIRFRAME_VERSION, // Dependency injection
  "org.wvlet.airframe" %% "airframe-bootstrap" % AIRFRAME_VERSION, // Application bootstrap helper
  "org.wvlet.airframe" %% "airframe-codec"     % AIRFRAME_VERSION, // MessagePack-based schema-on-read transcoder
  "org.wvlet.airframe" %% "airframe-config"    % AIRFRAME_VERSION, // YAML-based configuration
  "org.wvlet.airframe" %% "airframe-control"   % AIRFRAME_VERSION, // Library for retryable execution
  "org.wvlet.airframe" %% "airframe-jmx"       % AIRFRAME_VERSION, // JMX entry
  "org.wvlet.airframe" %% "airframe-jdbc"      % AIRFRAME_VERSION, // JDBC connection pool
  "org.wvlet.airframe" %% "airframe-log"       % AIRFRAME_VERSION, // Logging
  "org.wvlet.airframe" %% "airframe-metrics"   % AIRFRAME_VERSION, // Metrics units
  "org.wvlet.airframe" %% "airframe-msgpack"   % AIRFRAME_VERSION, // Pure-Scala MessagePack
  "org.wvlet.airframe" %% "airframe-opts"      % AIRFRAME_VERSION, // Command-line option parser
  "org.wvlet.airframe" %% "airframe-stream"    % AIRFRAME_VERSION, // Stream processing library
  "org.wvlet.airframe" %% "airframe-surface"   % AIRFRAME_VERSION, // Object surface inspector
  "org.wvlet.airframe" %% "airframe-tablet"    % AIRFRAME_VERSION  // Table data reader/writer
)

# For Scala.js, the following libraries can be used:
libraryDependencies ++= Seq(
  "org.wvlet.airframe" %%% "airframe"         % AIRFRAME_VERSION, // Dependency injection
  "org.wvlet.airframe" %%% "airframe-control" % AIRFRAME_VERSION, // Library for retryable execution
  "org.wvlet.airframe" %%% "airframe-log"     % AIRFRAME_VERSION, // Logging
  "org.wvlet.airframe" %%% "airframe-metrics" % AIRFRAME_VERSION, // Metrics units
  "org.wvlet.airframe" %%% "airframe-msgpack" % AIRFRAME_VERSION, // Pure-Scala MessagePack
  "org.wvlet.airframe" %%% "airframe-surface" % AIRFRAME_VERSION  // Object surface inspector
)

LICENSE

Apache v2

About

Lightweight Building Blocks for Scala

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 93.8%
  • ANTLR 2.8%
  • Shell 2.6%
  • Java 0.8%