Skip to content

Commit

Permalink
SAK-40498 - Add the token granting URL for LTI 1.3 (sakaiproject#5987)
Browse files Browse the repository at this point in the history
* SAK-40498 - Lay some groundwork

* SAK-40498 - Some stragglers.

* Progress towards a meaningful AccessToken

* SAK-40498 - Construct real access token and parse/check

* SAK-40498 - Clean up and refactor

* SAK-40498 - Security checking done - next store the grade

* SAK-40498 - Token url and lineitem initial work
  • Loading branch information
csev authored Sep 13, 2018
1 parent 96a382e commit 8ff749c
Show file tree
Hide file tree
Showing 16 changed files with 1,086 additions and 182 deletions.
22 changes: 22 additions & 0 deletions basiclti/basiclti-blis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,28 @@
<artifactId>commons-lang</artifactId>
</dependency>

<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.10.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.10.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.10.5</version>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>4.3.1</version>
</dependency>


<!-- for the entityprovider -->
<dependency>
<groupId>org.sakaiproject.entitybroker</groupId>
Expand Down
Loading

0 comments on commit 8ff749c

Please sign in to comment.