-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (44 loc) · 1.38 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
apply plugin: 'war'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.akhikhl.gretty'
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url 'http://repo.javalite.io' }
}
dependencies {
classpath 'org.akhikhl.gretty:gretty:1.4.0'
}
}
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 'ch.qos.logback:logback-classic:1.1.7'
compile 'io.jsonwebtoken:jjwt:0.6.0'
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'org.irmacard.api:irma_api_common:1.2.1'
compile 'foundation.privacybydesign.common:irma_server_common:0.3.2'
compile files('libs/net.bankid.merchant.library.jar')
gretty 'commons-dbcp:commons-dbcp:1.4'
compile 'net.glxn:qrgen:1.4'
compile 'mysql:mysql-connector-java:5.1.27'
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
}