-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
45 lines (37 loc) · 1.01 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.3.0"
classpath "gradle.plugin.pl.squirrel:classycle-gradle-plugin:1.2"
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
}
}
plugins {
id 'net.researchgate.release' version "2.7.0"
id 'com.github.ben-manes.versions' version '0.17.0'
id 'io.franzbecker.gradle-lombok' version '1.14'
id "com.dorongold.task-tree" version "1.3"
id "com.github.spotbugs" version "1.6.0"
id "me.champeau.gradle.jmh" version "0.4.6"
}
apply plugin: 'java'
group 'com.github.autofixture'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
}
apply from: 'gradle/compile.gradle'
apply from: 'gradle/test.gradle'
apply from: 'gradle/release.gradle'
lombok {
version = lombokVersion
}