-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
95 lines (84 loc) · 2.95 KB
/
build.gradle.kts
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
/*
* Copyright (c) 2022 Microsoft Corporation
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Microsoft Corporation - initial API and implementation
*
*/
import java.time.Duration
plugins {
checkstyle
`maven-publish`
signing
`java-library`
`version-catalog`
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
}
val version: String by project
val edcScmConnection: String by project
val edcWebsiteUrl: String by project
val edcScmUrl: String by project
val javaVersion: String by project
val annotationProcessorVersion: String by project
buildscript {
dependencies {
val edcGradlePluginsVersion: String by project
classpath("org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin:${edcGradlePluginsVersion}")
}
}
allprojects {
apply(plugin = "org.eclipse.edc.edc-build")
// for all gradle plugins:
pluginManager.withPlugin("java-gradle-plugin") {
apply(plugin = "com.gradle.plugin-publish")
}
// for all java libs:
pluginManager.withPlugin("java-library") {
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
}
tasks.withType(JavaCompile::class.java) {
// making sure the code does not use any APIs from a more recent version.
// Ref: https://docs.gradle.org/current/userguide/building_java_projects.html#sec:java_cross_compilation
options.release.set(javaVersion.toInt())
}
withJavadocJar()
withSourcesJar()
}
}
configure<org.eclipse.edc.plugins.edcbuild.extensions.BuildExtension> {
pom {
scmConnection.set(edcScmConnection)
scmUrl.set(edcScmUrl)
}
swagger {
title.set((project.findProperty("apiTitle") ?: "EDC REST API") as String)
description =
(project.findProperty("apiDescription") ?: "EDC REST APIs - merged by OpenApiMerger") as String
outputFilename.set(project.name)
outputDirectory.set(file("${rootProject.projectDir.path}/resources/openapi/yaml"))
}
}
// configure which version of the annotation processor to use. defaults to the same version as the plugin
configure<org.eclipse.edc.plugins.autodoc.AutodocExtension> {
processorVersion.set(annotationProcessorVersion)
outputDirectory.set(project.layout.buildDirectory.asFile.get())
}
val signingTasks: TaskCollection<Sign> = tasks.withType()
tasks.withType<PublishToMavenRepository>().configureEach{
mustRunAfter(signingTasks)
}
}
nexusPublishing {
transitionCheckOptions {
maxRetries.set(120)
delayBetween.set(Duration.ofSeconds(10))
}
}