-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
53 lines (42 loc) · 1.44 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'gs-serving-web-content'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.2.3.RELEASE")
compile('org.springframework.boot:spring-boot-starter-actuator')
// Restful
compile("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE")
// Util
compile('org.projectlombok:lombok:1.16.2')
// DB
compile('commons-dbcp:commons-dbcp:1.4')
compile('postgresql:postgresql:9.1-901-1.jdbc4')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.flywaydb:flyway-core')
//selenium
compile group: 'org.seleniumhq.selenium', name: 'selenium-firefox-driver', version:'2.41.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version:'2.41.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-api', version:'2.41.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version:'2.41.0'
compile('org.mockito:mockito-all:1.8.4')
// Test
testCompile group: 'junit', name: 'junit', version: '4.11'
}