-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (42 loc) · 1.03 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
50
51
52
53
54
55
56
57
import org.gradle.api.tasks.wrapper.Wrapper
/*
* This file was generated by the Gradle 'init' task.
*/
allprojects {
group = 'com.epam.jdi'
version = '2.0'
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
gradleVersion = "6.6.1"
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = '1.8'
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
idea {
module {
generatedSourceDirs += file('generated-code/src/main/java')
downloadJavadoc = true
downloadSources = true
}
}
//New gradle 6 feature. won't work with lower gradle version
//noinspection GroovyAssignabilityCheck
java {
withJavadocJar()
withSourcesJar()
}
javadoc {
failOnError = false
options.addBooleanOption('Xdoclint:none', true)
}
dependencies {
implementation 'org.eluder.coveralls:coveralls-maven-plugin:4.3.0'
}
}