-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (33 loc) · 1011 Bytes
/
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
plugins {
id "de.esoco.gwt-lib" version "1.1.0"
}
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
description = 'OAuth for GWT'
version = '1.4'
dependencies {
compile ( "org.tuckey:urlrewritefilter:4.0.4")
compile ( "javax.servlet:servlet-api:2.4")
compile ( "commons-httpclient:commons-httpclient:3.1") { transitive = false } // requires a missing commons logging version: 1.0.4
compile ( "commons-fileupload:commons-fileupload:1.4")
compile ( "commons-io:commons-io:2.1.0")
// GWT Tests currently not support by the 'esoco' GWT plugin. A separate gradle file is included for running tests
testCompile ('com.google.gwt:gwt-user:2.8.2')
testImplementation 'junit:junit:4.12'
}
gwt {
module 'org.appfuse.gwt.oauth.OAuth'
}
// GWT Tests currently not supported by the 'esoco' GWT plugin. A separate gradle file is included for running tests
/*
test {
useJUnit()
maxHeapSize = '1G'
filter {
includeTestsMatching "*Gwt*"
}
}
*/