https://github.com/oxctl/spring-security-lti13
A LTI 1.3 implementation for Spring Security that builds on the OAuth2 support
https://github.com/oxctl/spring-security-lti13
java library spring spring-security
Last synced: 5 months ago
JSON representation
A LTI 1.3 implementation for Spring Security that builds on the OAuth2 support
- Host: GitHub
- URL: https://github.com/oxctl/spring-security-lti13
- Owner: oxctl
- License: apache-2.0
- Created: 2019-12-13T16:44:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-30T09:29:08.000Z (about 1 year ago)
- Last Synced: 2025-07-06T09:03:29.693Z (12 months ago)
- Topics: java, library, spring, spring-security
- Language: Java
- Homepage:
- Size: 188 KB
- Stars: 15
- Watchers: 6
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Spring Security LTI 1.3 Implementation
[](https://github.com/oxctl/spring-security-lti13/actions/workflows/push.yml)
This library adds support to Spring Security to allow LTI 1.3 launches to authenticate a user. This is still a work in progress and will be changing substantially in the near future.
## Spring Security OAuth2
This library uses [Spring Security](https://spring.io/projects/spring-security) and it's OAuth code as its basis.
## Using
This [library](https://search.maven.org/artifact/uk.ac.ox.ctl/spring-security-lti13) is released to maven central and can be added to your maven project with the following project coordinates:
```xml
uk.ac.ox.ctl
spring-security-lti13
0.3.4
```
There is a [demo project](https://github.com/oxctl/spring-security-lti13-demo) built using this library that may be helpful in getting started with the project.
### Development Builds
If you want to use the latest (unstable) unreleased version of the library in your project builds are published to GitHub packages. To use this version in your project you need to add the GitHub packages repository to your `pom.xml`:
```xml
oxctl/spring-security-lti13
https://maven.pkg.github.com/oxctl/spring-security-lti13
true
false
```
then add the `SNAPSHOT` version of the library to your `pom.xml`:
```xml
uk.ac.ox.ctl
spring-security-lti13
0.2.1-SNAPSHOT
```
However, this should just be for testing until a new version is released to Maven Central.
### Releasing
The project is deployed to the central repository, once ready to release use the release plugin to tag everything:
```bash
mvn -Prelease,sonatype release:clean release:prepare
```
then if that completes successfully a release bundle can be pushed to the staging area of the Sonatype OSS repository with:
```bash
mvn -Prelease,sonatype release:perform
```
We don't automatically close the staged artifacts so after checking that the files are ok you should login to the [repository](https://oss.sonatype.org/) and release it. The version in the README.md should also be updated so that people using the project get the latest version and the demo project should be updated to use the latest version.
## References
- Learning Tools Interoperability Core Specification - https://www.imsglobal.org/spec/lti/v1p3
- 1 EdTech Security Framework - https://www.imsglobal.org/spec/lti/v1p3
- OpenID Connect Core - https://openid.net/specs/openid-connect-core-1_0.html