This repository has been archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.gradle
72 lines (58 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
buildscript {
ext {
gaeVersion = '1.9.53'
groovyVersion = '2.4.12'
}
repositories {
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-gaelyk-plugin:0.6'
classpath 'org.gradle.api.plugins:gradle-appengine-geb-plugin:0.4'
}
}
plugins {
id "net.ossindex.audit" version "0.1.1"
id "war"
id "groovy"
}
apply plugin: 'appengine-geb'
apply plugin: 'gaelyk'
def compatibilityVersion = 1.7
sourceCompatibility = compatibilityVersion
targetCompatibility = compatibilityVersion
repositories {
maven { url 'http://dl.bintray.com/gaelyk/groovy-patches' }
mavenCentral()
mavenLocal()
}
dependencies {
compile "org.codehaus.groovy:groovy-all:${groovyVersion}", { force = true }
compile "com.google.appengine:appengine-api-1.0-sdk:$gaeVersion",
"com.google.appengine:appengine-api-labs:$gaeVersion"
compile 'org.gaelyk:gaelyk:2.2.0'
compile 'com.google.http-client:google-http-client-appengine:1.22.0'
compile 'org.apache.httpcomponents:httpclient:4.5.3'
compile 'org.apache.httpcomponents:httpclient:4.5.3'
compile 'opensymphony:sitemesh:2.4.2'
compile 'io.jsonwebtoken:jjwt:0.7.0'
compile 'io.reactivex.rxjava2:rxjava:2.1.3'
testCompile 'org.gaelyk:gaelyk-spock:0.5'
testCompile "com.google.appengine:appengine-api-stubs:$gaeVersion",
"com.google.appengine:appengine-testing:$gaeVersion"
functionalTestCompile 'io.github.bonigarcia:webdrivermanager:1.7.0'
functionalTestCompile 'org.seleniumhq.selenium:selenium-firefox-driver:3.4.0'
functionalTestCompile 'org.gebish:geb-spock:1.1.1'
appengineSdk "com.google.appengine:appengine-java-sdk:$gaeVersion"
}
appengine {
appcfg {
oauth2 = true
app {
id = 'lgtmin'
}
}
}
compileGroovy.dependsOn 'audit'