-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle
149 lines (120 loc) · 4.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
id 'org.jetbrains.kotlin.plugin.noarg' version '1.3.70'
id 'info.solidsoft.pitest' version '1.4.5'
}
group = 'net.pterodactylus'
version = '82'
repositories {
mavenCentral()
maven { url "https://maven.pterodactylus.net/" }
}
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(KotlinCompile) {
kotlinOptions {
jvmTarget = "1.8"
}
}
configurations {
provided {
dependencies.all { dep ->
configurations.default.exclude group: dep.group, module: dep.name
}
}
compile.extendsFrom provided
}
dependencies {
provided group: 'org.freenetproject', name: 'fred', version: '0.7.5.1475'
provided group: 'org.freenetproject', name: 'freenet-ext', version: '29'
provided group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.54'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8'
compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.3.0-RC'
compile group: 'net.pterodactylus', name: 'utils', version: '0.13.1'
compile group: 'com.google.inject', name: 'guice', version: '4.2.2'
compile group: 'com.google.guava', name: 'guava', version: '27.0.1-jre'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.1'
compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.9.1'
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.2'
compile group: 'io.dropwizard.metrics', name: 'metrics-core', version: '4.1.0'
compile group: 'javax.activation', name: 'javax.activation-api', version: '1.2.0'
testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.28.2'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}
apply from: 'version.gradle'
task parallelTest(type: Test) {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
useJUnit {
excludeCategories 'net.pterodactylus.sone.test.NotParallel'
}
}
task notParallelTest(type: Test) {
maxParallelForks = 1
useJUnit {
includeCategories 'net.pterodactylus.sone.test.NotParallel'
}
dependsOn parallelTest
}
test {
exclude '**'
dependsOn parallelTest, notParallelTest
}
task fatJar(type: Jar) {
archiveFileName = project.name.toLowerCase() + '-jar-with-dependencies.jar'
from { (configurations.runtime - configurations.provided).collect { it.isDirectory() ? it : zipTree(it) } }
manifest {
attributes('Plugin-Main-Class': 'net.pterodactylus.sone.main.SonePlugin')
}
with jar
}
javadoc {
options {
quiet()
showFromPrivate()
footer('© 2010–2013 David ‘Bombe’ Roden')
links('http://docs.oracle.com/javase/7/docs/api/')
}
failOnError = false
}
apply plugin: 'jacoco'
jacoco {
toolVersion = '0.8.4'
}
jacocoTestReport.dependsOn test
pitest {
pitestVersion = '1.4.10'
outputFormats = ['HTML', 'XML']
timestampedReports = false
timeoutFactor = 3.0
}
apply plugin: 'findbugs'
findbugs {
ignoreFailures = true
}
apply plugin: 'idea'
task countLinesMain(type: Exec) {
executable = 'cloc'
args = ['--by-file', '--xml', '--report-file=build/reports/cloc/main.xml', 'src/main']
standardOutput = new ByteArrayOutputStream()
}
task countLinesTest(type: Exec) {
executable = 'cloc'
args = ['--by-file', '--xml', '--report-file=build/reports/cloc/test.xml', 'src/test']
standardOutput = new ByteArrayOutputStream()
}
task countLines {
new File(buildDir, "reports/cloc").mkdirs()
dependsOn tasks.countLinesMain
dependsOn tasks.countLinesTest
}
noArg {
annotation('net.pterodactylus.sone.main.NoArg')
}