-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (46 loc) · 1.18 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 {
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
}
}
plugins {
id 'java'
id 'jacoco'
id 'idea'
id 'signing'
id 'maven'
id 'pmd'
id 'checkstyle'
id 'com.github.spotbugs' version '4.0.8'
id 'info.solidsoft.pitest' version '1.5.1'
id 'io.freefair.lombok' version '5.0.1'
id 'io.codearte.nexus-staging' version '0.21.2'
id 'pl.allegro.tech.build.axion-release' version '1.11.0'
id 'com.github.ben-manes.versions' version '0.28.0'
id 'com.github.kt3k.coveralls' version '2.10.1'
}
apply from: './gradle/dependencies.gradle'
apply from: './gradle/publishing.gradle'
apply from: './gradle/versioning.gradle'
apply from: './gradle/checking.gradle'
apply from: './gradle/testing.gradle'
version = scmVersion.version
group = theGroup
archivesBaseName = theArchivesBaseName
compileJava {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
idea {
module {
downloadJavadoc = true
downloadSources = false
}
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
gradleVersion = '6.4'
}