-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
55 lines (45 loc) · 1.53 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
group 'foundation.privacybydesign.email'
version '1.1.0'
apply plugin: 'war'
apply plugin: 'org.gretty'
sourceCompatibility = 11
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gretty:gretty:4.1.2"
}
}
war {
archiveName 'irma_email_issuer.war'
}
repositories {
maven {
url "https://credentials.github.io/repos/maven2/"
}
mavenCentral()
}
dependencies {
implementation 'org.glassfish.jersey.core:jersey-server:3.0.12'
implementation 'org.glassfish.jersey.containers:jersey-container-servlet:3.0.12'
implementation 'org.glassfish.jersey.inject:jersey-hk2:3.0.12'
implementation 'ch.qos.logback:logback-classic:1.5.3'
implementation 'com.sun.mail:jakarta.mail:2.0.1'
implementation 'jakarta.ws.rs:jakarta.ws.rs-api:3.1.0'
implementation 'io.jsonwebtoken:jjwt:0.12.5'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.bouncycastle:bcpkix-jdk18on:1.77'
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1'
// Source dependencies. Check settings.gradle for the source repositories.
implementation 'org.irmacard.api:irma_api_common:v2.0.1'
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
}
gretty {
contextConfigFile = file('src/main/resources/jetty-env.xml')
extraResourceBase 'webapp/build'
}