-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
85 lines (75 loc) · 2.44 KB
/
build.gradle
File metadata and controls
85 lines (75 loc) · 2.44 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
group 'com.holi'
version '1.0'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
repositories {
maven {
url = "http://maven.aliyun.com/nexus/content/groups/public"
}
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M3'
}
}
apply plugin: 'org.junit.platform.gradle.plugin'
repositories {
maven {
url = "http://maven.aliyun.com/nexus/content/groups/public"
}
maven {
name = "Alfresco Public Repository"
url = "http://repo.spring.io/milestone/";
}
maven {
name = "clojars"
url = "http://clojars.org/repo/"
}
}
dependencies {
compile fileTree('libs')
compile 'org.hibernate:hibernate-core:5.2.9.Final'
compile 'org.springframework:spring-webmvc:5.0.0.M5'
compile 'org.springframework:spring-context:5.0.0.M5'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.8.1'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.8.8'
compile 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.8.8'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.8.8'
compile 'ognl:ognl:3.2.2'
compile 'com.google.inject:guice:4.1.0'
compile 'com.google.inject.extensions:guice-assistedinject:4.1.0'
compile 'joda-time:joda-time:2.9.9'
compile 'net.sf.json-lib:json-lib:2.4:jdk15'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.0.0-M3'
testCompile 'org.springframework:spring-test:5.0.0.M5'
testCompile 'org.springframework.batch:spring-batch-test:4.0.0.M1'
testCompile 'org.mockito:mockito-core:2.7.13'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'com.jayway.jsonpath:json-path-assert:2.2.0'
testCompile 'org.ow2.asm:asm-all:6.0_ALPHA'
testCompile 'org.hsqldb:hsqldb:2.3.4'
testCompile 'org.easytesting:fest-assert:1.4'
testCompile 'org.jmock:jmock:2.8.2'
testRuntime 'org.junit.platform:junit-platform-console:1.0.0-M3'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.0.0-M3'
}
configurations {
testCompile {
exclude group: 'junit'
exclude module: 'hamcrest-core'
exclude module: 'hamcrest-library'
}
}
apply plugin: 'idea';
idea {
module {
excludeDirs += ['.idea', '.gradle', 'gradle'].collect { return file(it); };
}
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}