https://github.com/pfgray/lti-java
A library for writing LTI applications on the JVM
https://github.com/pfgray/lti-java
Last synced: 2 months ago
JSON representation
A library for writing LTI applications on the JVM
- Host: GitHub
- URL: https://github.com/pfgray/lti-java
- Owner: pfgray
- License: apache-2.0
- Created: 2018-04-19T01:26:31.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T17:03:14.000Z (about 7 years ago)
- Last Synced: 2025-01-25T06:26:19.423Z (4 months ago)
- Language: Java
- Size: 750 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LTI Java
A library that helps you write LTI applications for the JVM.[Documentation](http://pfgray.github.io/lti-java)
LTI is a web application standard published by [IMS Global](http://www.imsglobal.org/) 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:
```
net.paulgray
lti
1.0.0-SNAPSHOTnet.paulgray
lti-spring
1.0.0-SNAPSHOT```
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.