circe

Analogweb Framework is tiny, simple, and pluggable web framework.

License

License

MIT
GroupId

GroupId

org.analogweb
ArtifactId

ArtifactId

analogweb-circe_2.11
Last Version

Last Version

0.11.0
Release Date

Release Date

Type

Type

jar
Description

Description

circe
Analogweb Framework is tiny, simple, and pluggable web framework.
Project URL

Project URL

http://analogweb.github.io/
Project Organization

Project Organization

org.analogweb
Source Code Management

Source Code Management

https://github.com/analogweb/analogweb-scala

Download analogweb-circe_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/org.analogweb/analogweb-circe_2.11/ -->
<dependency>
    <groupId>org.analogweb</groupId>
    <artifactId>analogweb-circe_2.11</artifactId>
    <version>0.11.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.analogweb/analogweb-circe_2.11/
implementation 'org.analogweb:analogweb-circe_2.11:0.11.0'
// https://jarcasting.com/artifacts/org.analogweb/analogweb-circe_2.11/
implementation ("org.analogweb:analogweb-circe_2.11:0.11.0")
'org.analogweb:analogweb-circe_2.11:jar:0.11.0'
<dependency org="org.analogweb" name="analogweb-circe_2.11" rev="0.11.0">
  <artifact name="analogweb-circe_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.analogweb', module='analogweb-circe_2.11', version='0.11.0')
)
libraryDependencies += "org.analogweb" % "analogweb-circe_2.11" % "0.11.0"
[org.analogweb/analogweb-circe_2.11 "0.11.0"]

Dependencies

compile (6)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
org.analogweb : analogweb-scala_2.11 jar 0.11.0
org.analogweb : analogweb-core jar 0.11.0
io.circe : circe-core_2.11 jar 0.11.1
io.circe : circe-jawn_2.11 jar 0.11.1
io.circe : circe-generic_2.11 jar 0.11.1

test (3)

Group / Artifact Type Version
org.specs2 : specs2-core_2.11 jar 4.4.1
org.specs2 : specs2-mock_2.11 jar 4.4.1
org.specs2 : specs2-junit_2.11 jar 4.4.1

Project Modules

There are no modules declared in this project.

Analogweb Framework Scala

Build Status codecov Codacy Badge Maven Central License FOSSA Status

Quick Start

Create build.sbt

scalaVersion := "2.13.1"
libraryDependencies ++= Seq (
  "org.analogweb" %% "analogweb-scala" % "0.12.0"
)

Start sbt console.

$ sbt console

Write a code.

scala> import analogweb._
import analogweb._

scala> http("localhost",8000) {
    |   get("/ping") { "PONG" }
    | }.run
...
INFO: An Analogweb application has been booted. (Erapsed time: 412ms)

and you will get them.

$ curl localhost:8000/ping
PONG

License

FOSSA Status

org.analogweb

Analogweb Framework

Write Web API easily and freely by your style.

Versions

Version
0.11.0
0.10.1