-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathbuild.gradle
45 lines (38 loc) · 804 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
44
45
plugins {
id "org.jetbrains.intellij" version "0.2.17"
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
repositories {
jcenter()
mavenCentral()
}
dependencies {
testCompile "org.mockito:mockito-inline:2.9.0"
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'com.tngtech.java', name: 'junit-dataprovider', version: '1.10.0'
}
sourceSets {
main {
java {
srcDir 'src/'
}
resources {
srcDir 'resources'
}
}
test {
java {
srcDir 'tests/unit'
}
}
}
intellij {
plugins 'git4idea'
pluginName 'Open in Git host'
updateSinceUntilBuild false
sameSinceUntilBuild false
}
group 'org.jetbrains'
version '2.0'