pfgray / lti-java

A library for writing LTI applications on the JVM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LTI Java

A library that helps you write LTI applications for the JVM.

Documentation

LTI is a web application standard published by IMS Global that enables learning tools to integrate with other systems.

This library provides mechanisms supporting a few different frameworks such as the Java Servlet API, and the Spring framework. The dependencies provided via this framework are:

You can include these libraries in your pom.xml like so:

<dependency>
  <groupId>net.paulgray</groupId>
  <artifactId>lti</artifactId>
  <version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
  <groupId>net.paulgray</groupId>
  <artifactId>lti-spring</artifactId>
  <version>1.0.0-SNAPSHOT</version>
</dependency>

If you're using SBT you can include them in your build.sbt like so:

libraryDependencies ++= Seq(
  "net.paulgray" % "lti" % "1.0.0-SNAPSHOT",
  "net.paulgray" % "lti-spring" % "1.0.0-SNAPSHOT"
)

Pull requests are welcome and very much appreciated.

About

A library for writing LTI applications on the JVM

License:Apache License 2.0


Languages

Language:Java 78.7%Language:HTML 12.0%Language:CSS 6.3%Language:JavaScript 2.7%Language:Scala 0.4%