forked from MarquezProject/marquez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
150 lines (132 loc) · 4.22 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
150
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'com.adarshr:gradle-test-logger-plugin:3.2.0'
classpath 'gradle.plugin.com.github.johnrengelman:shadow:7.1.2'
classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.22.0'
}
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
}
}
subprojects {
apply plugin: 'jacoco'
apply plugin: 'java'
apply plugin: 'com.adarshr.test-logger'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: "com.diffplug.spotless"
apply plugin: "pmd"
project(':api') {
apply plugin: 'application'
archivesBaseName = 'marquez-api'
}
project(':clients:java') {
apply plugin: 'java-library'
archivesBaseName = 'marquez-java'
}
ext {
assertjVersion = '3.24.2'
dropwizardVersion = '2.1.12'
jacocoVersion = '0.8.11'
junit5Version = '5.10.2'
lombokVersion = '1.18.32'
mockitoVersion = '5.4.0'
openlineageVersion = '1.13.1'
slf4jVersion = '1.7.36'
postgresqlVersion = '42.6.0'
}
dependencies {
implementation "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testImplementation "org.assertj:assertj-core:${assertjVersion}"
testImplementation "org.junit.jupiter:junit-jupiter:${junit5Version}"
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}"
testImplementation "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}
compileJava {
options.incremental = true
options.compilerArgs << '-parameters'
options.encoding = "UTF-8"
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileTestJava {
options.incremental = true
options.compilerArgs << '-parameters'
options.encoding = "UTF-8"
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
task sourceJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allJava
archiveClassifier.set("sources")
}
task javadocJar(type: Jar) {
from javadoc.destinationDir
archiveClassifier.set("javadoc")
}
pmd {
consoleOutput = true
toolVersion = "6.55.0"
rulesMinimumPriority = 5
ruleSetFiles = rootProject.files("pmd-marquez.xml")
ruleSets = []
ignoreFailures = true
}
pmdMain {
reports {
html.required = true
}
}
spotless {
def disallowWildcardImports = {
String text = it
def regex = ~/import .*\.\*;/
def m = regex.matcher(text)
if (m.find()) {
throw new AssertionError("Wildcard imports disallowed - ${m.findAll()}")
}
}
java {
googleJavaFormat()
removeUnusedImports()
endWithNewline()
custom 'disallowWildcardImports', disallowWildcardImports
}
}
def reportsDir = "${buildDir}/reports";
def coverageDir = "${reportsDir}/coverage";
jacoco {
toolVersion = "${jacocoVersion}"
reportsDir = file(coverageDir)
}
jacocoTestReport {
reports {
xml.required = true
html.required = true
html.outputLocation = file(coverageDir)
}
}
}