-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (40 loc) · 1.07 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
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.bmuschko:gradle-docker-plugin:3.2.6'
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.3'
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.2'
}
}
apply plugin: 'application'
allprojects {
group = 'com.github.dddpaul.kafka'
version = '0.0.2-SNAPSHOT'
sourceCompatibility = 1.11
apply plugin: 'java'
ext {
dockerPrefix = "dddpaul"
}
repositories {
jcenter()
mavenCentral()
}
task wrapper(type: Wrapper) {
gradleVersion = '4.10.2'
distributionUrl = 'https://services.gradle.org/distributions/gradle-4.10.2-all.zip'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.3.1'
}
test {
useJUnitPlatform()
}
}
dependencies {
compile project(':core')
}