generated from odpi/egeria-template-newrepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
292 lines (253 loc) · 9.71 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Contributors to the ODPi Egeria project.
*/
plugins {
id 'java-library'
id "com.github.johnrengelman.shadow" version "8.1.1"
id 'idea'
id 'maven-publish'
// Checks for unnecessary dependencies
id 'com.autonomousapps.dependency-analysis' version "1.20.0"
// helps resolve log implementation clashes
id 'dev.jacomet.logging-capabilities' version "0.11.1"
// This plugin helps resolve jakarta/javax dev.jacomet.logging-capabilities
id 'org.gradlex.java-ecosystem-capabilities' version "1.3"
}
// Mostly java, so default to this for now
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'jacoco'
apply plugin: 'org.gradlex.java-ecosystem-capabilities'
// temp disabled due to k/wrapp
// apply plugin: 'dev.jacomet.logging-capabilities'
// As we've migrated from maven - we'll assume all submodules publish directly to maven
apply plugin: 'maven-publish'
if (System.getenv("CI")) {
apply plugin: 'signing'
}
if (System.getenv("CUSTOM_REPOSITORIES")) {
logger.info("Custom repositories found!")
// TODO: Check if the env is split correctly with ";"
System.getenv("CUSTOM_REPOSITORIES").split(";").each {
logger.info("Adding custom repository: " + it.toString())
project.repositories.maven { repo ->
repo.url = uri(it.toString()) }
}
}
repositories {
mavenCentral()
maven { url("https://oss.sonatype.org/content/repositories/snapshots") }
}
logger.info("Repository list:")
project.repositories.each { logger.info("Name: " + it.name + " url: " + it.url) }
logger.info("Buildscript:")
project.buildscript.repositories.each { logger.info("Name: " + it.name + " url: " + it.url) }
// ensures we pick up the very latest snapshots when built
configurations.all {
// check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
// TODO: Specify group, description, version of new code being built. The name is in settings.gradle
group = 'org.odpi.egeria'
version = '4.2-SNAPSHOT'
description = 'Integration lineage connector'
// TODO: Specify Dependency versions as variables
ext {
egeriaVersion = '4.2-SNAPSHOT'
}
dependencies {
implementation platform("org.odpi.egeria:egeria:${egeriaVersion}")
implementation "com.fasterxml.jackson.core:jackson-core"
api "org.odpi.egeria:open-integration-framework"
api "org.odpi.egeria:open-connector-framework"
api "org.odpi.egeria:lineage-integrator-api"
api "com.fasterxml.jackson.core:jackson-databind"
api "org.odpi.egeria:open-connector-framework"
compileOnly "org.odpi.egeria:audit-log-framework"
compileOnly "org.odpi.egeria:data-manager-api"
compileOnly "org.odpi.egeria:repository-services-apis"
compileOnly "org.odpi.egeria:topic-integrator-api"
compileOnly "org.odpi.egeria:asset-manager-api"
compileOnly "com.fasterxml.jackson.core:jackson-annotations"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testCompileOnly "org.odpi.egeria:lineage-integrator-api"
testCompileOnly "org.odpi.egeria:audit-log-framework"
testCompileOnly "org.odpi.egeria:data-manager-api"
testCompileOnly "org.odpi.egeria:open-connector-framework"
testCompileOnly "org.odpi.egeria:repository-services-apis"
testCompileOnly "org.odpi.egeria:topic-integrator-api"
testCompileOnly "org.odpi.egeria:asset-manager-api"
testImplementation "org.odpi.egeria:asset-manager-client"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.apache.kafka:kafka-clients"
testImplementation "org.odpi.egeria:open-integration-framework"
testImplementation "org.odpi.egeria:governance-action-framework"
}
// Testing
test {
useJUnitPlatform {
includeEngines 'junit-jupiter'
}
testLogging {
events "passed", "skipped", "failed"
}
reports {
html.required = true
}
}
// Maven Central (technically sonatype oss) requires we distribute source and javadoc.
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withJavadocJar()
withSourcesJar()
}
// More Java language settings
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
sourceCompatibility = "17"
targetCompatibility = "17"
options.incremental = true
options.fork = false
options.failOnError = true
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
}
// For later java versions this is recommended - keep conditional in case we want to build on 8
javadoc {
if (JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}
// code coverage
jacoco {
toolVersion = "0.8.8"
}
// Can remove the shadowJar definitions if a jar with dependencies is not needed
// compileonly content won't be included, so even an uber jar should not contain egeria dependencies already in chassis.
shadowJar {
archiveClassifier = 'jar-with-dependencies'
}
// We want to built a jar with dependencies in a normal build, so to avoid specifying task explicitly
build.dependsOn shadowJar
// We only have a single artifact for now - this additional metadata is
// required for publishing to maven central. Only doing signing in 'CI'
publishing {
publications {
connector(MavenPublication) {
from components.java
pom {
url = 'http://egeria.odpi.org'
licenses {
// Code
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
// Docs
license {
name = 'Creative Commons Attribution 4.0 International (CC BY 4.0)'
url = 'https://creativecommons.org/licenses/by/4.0'
}
}
developers {
developer {
id = 'planetf1'
name = 'Nigel Jones'
email = '[email protected]'
}
}
scm {
// TODO: Update references to git source for this particular repository
connection = 'scm:git:git://github.com/odpi/egeria-template-newrepo.git'
developerConnection = 'scm:git:ssh://github.com/odpi/egeria/egeria-template-newrepo.git'
url = 'http://github.com/odpi/egeria-template-newrepo/'
}
}
// The maven artifact name comes from settings.gradle, if not found there defaults to directory name
pom.withXml {
asNode().appendNode('description', "${project.description}")
}
}
}
// Release versions get pushed to staging area on maven central, snapshots to snapshot repo
// Secrets for credentials
if (System.getenv("CI")) {
repositories {
maven {
name = 'OSSRH'
def releasesRepoUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
def snapshotsRepoUrl = 'https://oss.sonatype.org/content/repositories/snapshots'
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
// User token (under profile) on oss.sonatype.org
credentials {
username = System.getenv("OSSRH_USERNAME")
password = System.getenv("OSSRH_TOKEN")
}
}
}
}
}
// To publish to ossrh we need to sign the artifacts - only in CI
if (System.getenv("CI")) {
signing {
// This is the publication to sign
sign publishing.publications.connector
// gpg --export-secret-keys [email protected] | base64
def signingKey = System.getenv("OSSRH_GPG_PRIVATE_KEY")
// Passphrase for key
def signingPassword = System.getenv("OSSRH_GPG_PASSPHRASE")
// public key id (last 8 characters only) - note keys also need uploading to all the main registries
def signingKeyId = System.getenv("OSSRH_GPG_KEYID")
// We use these values from secrets rather than gradle.properties
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
}
}
/*
* Additional useful tasks
*/
task printAllDependencies(type: DependencyReportTask) {}
task printSubDependencies(type: DependencyReportTask) {}
task findDependency(type: DependencyInsightReportTask) {}
/*
* Configuration for sub projects only
*/
subprojects {
// All tasks currently will run under allProjects - which includes root.
}
/*
* Additional aggregate tasks run only at parent
*/
// Jacoco reporting -- from gradle
task codeCoverageReport(type: JacocoReport) {
// Gather execution data from all subprojects
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
// Add all relevant sourcesets from the subprojects
subprojects.each {
sourceSets it.sourceSets.main
}
// enable the different report types (html, xml, csv)
reports {
// xml is usually used to integrate code coverage with
// other tools like SonarQube, Coveralls or Codecov
xml.required = true
// HTML reports can be used to see code coverage
// without any external tools
html.required = true
csv.required = true
}
}
// always run the tests before generating the report
codeCoverageReport.dependsOn {
subprojects*.test
}
// Dependency checking - see https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin
dependencyAnalysis {
issues {
all {
onAny {
severity('fail')
}
}
}
}