forked from setblackWs/ratpackFibb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (29 loc) · 922 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
group 'pl.setblack'
version '1.0-SNAPSHOT'
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M3'
}
}
apply plugin: 'java'
apply plugin: 'org.junit.platform.gradle.plugin'
sourceCompatibility = 1.8
ext.junitJupiterVersion = '5.0.0-M3'
compileJava {
options.compilerArgs << '-parameters'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'io.ratpack', name: 'ratpack-core', version: '1.4.4'
compile 'com.google.code.findbugs:jsr305:3.0.1'
testCompile("org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}")
testRuntime("org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}")
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'io.ratpack', name: 'ratpack-test', version: '1.4.4'
}