-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.gradle
35 lines (29 loc) · 979 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
plugins {
id 'groovy'
id 'java'
id 'org.jetbrains.intellij' version '0.3.12'
}
group 'robteifi'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
"http://m2repo.spockframework.org/ext/"
"http://m2repo.spockframework.org/snapshots/"
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.15'
testCompile "org.spockframework:spock-core:1.2-groovy-2.4"
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
testRuntime "net.bytebuddy:byte-buddy:1.8.21" // allows mocking of classes (in addition to interfaces)
testRuntime "org.objenesis:objenesis:2.6" // allows mocking of classes without default constructor (together with CGLIB)
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version '2018.3'
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}