-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.57 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'war'
apply plugin: 'maven-publish'
description = 'LBU-LTI-Demo'
group = 'uk.ac.leedsbeckett'
repositories {
mavenCentral()
maven {
url "https://maven.pkg.github.com/leeds-beckett-digital-learning/lbu-lti"
credentials {
username = gitHubUserName
password = gitHubPrivateToken
}
}
}
dependencies {
// providedCompile 'javax:javaee-web-api:7.0'
providedCompile 'javax.servlet:javax.servlet-api:4.0.0'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.apache.commons:commons-text:1.9'
implementation 'org.apache.httpcomponents.core5:httpcore5:5.1.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.0'
implementation 'jstl:jstl:1.2'
implementation 'uk.ac.leedsbeckett:lbu-lti:0.0.4'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2',
// Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
'org.bouncycastle:bcprov-jdk15on:1.60',
'io.jsonwebtoken:jjwt-jackson:0.11.2'
testImplementation 'junit:junit:4.13'
}
publishing {
publications {
mavenWeb(MavenPublication) {
from components.web
}
}
repositories {
maven {
name = "GitHubPackages"
url "https://maven.pkg.github.com/leeds-beckett-digital-learning/lbu-lti-demo"
credentials {
username = gitHubUserName
password = gitHubPrivateToken
}
}
}
}