-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
46 lines (37 loc) · 1.06 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
apply plugin: 'war'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.akhikhl.gretty'
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath 'org.akhikhl.gretty:gretty:1.2.4'
}
}
repositories {
mavenLocal()
maven {
url "https://credentials.github.io/repos/maven2/"
}
mavenCentral()
}
dependencies {
compile 'org.glassfish.jersey.core:jersey-server:2.19'
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.19'
compile 'org.slf4j:slf4j-jdk14:1.7.12'
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'commons-codec:commons-codec:1.10'
compile 'io.jsonwebtoken:jjwt:0.6.0'
compile 'org.irmacard.mno:irma_mno_common:0.4.0'
testCompile "junit:junit:4.11"
testCompile 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty:2.19'
}
gretty {
contextConfigFile = file('src/test/resources/jetty-env.xml')
scanInterval = 10
inplaceMode = "hard"
httpsEnabled = true
}