forked from gstamatelat/random-sampling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (44 loc) · 917 Bytes
/
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
plugins {
id 'java-library'
id 'maven-publish'
id "com.github.spotbugs" version "4.4.4"
}
group = 'gr.james'
version = '0.16'
sourceCompatibility = 1.8
repositories {
jcenter()
}
java {
withJavadocJar()
withSourcesJar()
}
spotbugs {
spotbugsTest.enabled = false
effort = "max"
}
publishing {
publications {
library(MavenPublication) {
from components.java
}
}
repositories {
maven {
url = uri("${buildDir}/publishing-repository")
}
}
}
wrapper {
gradleVersion = '6.5.1'
}
javadoc {
doLast {
new File(destinationDir, 'stylesheet.css').append(file('src/javadoc/stylesheet.css').text)
new File(destinationDir, 'script.js').append(file('src/javadoc/script.js').text)
}
options.overview('src/javadoc/overview.html')
}
dependencies {
testImplementation 'junit:junit:4.12'
}