-
Notifications
You must be signed in to change notification settings - Fork 31
/
build.gradle
62 lines (52 loc) · 1.75 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
buildscript {
ext {
springBootVersion = '2.0.1.RELEASE'
}
repositories {
mavenCentral()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("me.champeau.gradle:jmh-gradle-plugin:0.4.7")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'war'
apply plugin: 'me.champeau.gradle.jmh'
group = 'com.joshcummings'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-data-jpa')
//compile('org.springframework.boot:spring-boot-starter-security')
compile('org.springframework.boot:spring-boot-starter-web')
compile('com.h2database:h2')
compile('javax.mail:mail:1.4')
compile('javax.servlet:jstl')
compile('org.apache.tomcat.embed:tomcat-embed-jasper')
testCompile('org.springframework:spring-beans')
testCompile('org.springframework:spring-context')
testCompile('org.springframework:spring-core')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('org.springframework.security:spring-security-test')
testCompile('com.github.docker-java:docker-java:3.0.14')
testCompile('io.github.bonigarcia:webdrivermanager:2.2.1')
testCompile('org.littleshoot:littleproxy:1.1.3-SNAPSHOT')
testCompile('org.mockito:mockito-core')
testCompile('org.seleniumhq.selenium:selenium-java')
testCompile('org.testng:testng:6.14.3')
jmh('org.openjdk.jmh:jmh-core:1.19')
jmh('org.openjdk.jmh:jmh-generator-annprocess:1.19')
jmh('org.apache.httpcomponents:httpclient:4.5')
}