-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
49 lines (45 loc) · 1.6 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 {
ext {
javaVersion = '1.8'
javaeeVersion = '8.0'
vavrVersion = '0.9.2'
slf4jVersion = '1.7.25'
logbackVersion = '1.2.3'
lombokVersion = '1.18.4'
hibernateCoreVersion = '4.2.18.Final'
junitPlatformVersion = '1.3.0'
junitJupiterVersion = '5.3.1'
assertjVersion = '3.11.1'
junit4Version = '4.12'
}
dependencies {
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16'
classpath 'org.jruby:jruby-complete:9.1.13.0'
}
}
plugins {
//id 'com.gradle.build-scan' version '1.16'
id 'com.avast.gradle.docker-compose' version '0.7.1'
id 'com.github.spotbugs' version '1.6.8' apply false
id 'org.asciidoctor.convert' version '1.5.8.1' apply false
id 'org.ajoberstar.git-publish' version '2.0.0-rc.2' apply false
id 'io.franzbecker.gradle-lombok' version '1.14' apply false
id 'cn.bestwu.propdeps-eclipse' version '0.0.10' apply false
id 'cn.bestwu.propdeps-maven' version '0.0.10' apply false
id 'cn.bestwu.propdeps-idea' version '0.0.10' apply false
id 'cn.bestwu.propdeps' version '0.0.10' apply false
}
wrapper {
gradleVersion = '5.1.1'
distributionType = 'BIN'
}
apply from: "$projectDir/gradle/ide.gradle"
apply from: "$projectDir/gradle/clean.gradle"
apply from: "$projectDir/gradle/repositories.gradle"
apply from: "$projectDir/gradle/java.gradle"
apply from: "$projectDir/gradle/junit.gradle"
apply from: "$projectDir/gradle/jacoco.gradle"
apply from: "$projectDir/gradle/spotbugs.gradle"
apply from: "$projectDir/gradle/docker-compose.gradle"
apply from: "$projectDir/gradle/docs.gradle"
//apply from: "$projectDir/gradle/build-scan.gradle"