-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (31 loc) · 953 Bytes
/
build.gradle.kts
File metadata and controls
36 lines (31 loc) · 953 Bytes
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
plugins {
base
alias(libs.plugins.jacocolog)
id("test-report-aggregation")
id("io.openapiprocessor.build.plugin.publish")
id("io.openapiprocessor.build.plugin.bump")
}
group = "io.openapiprocessor"
version = libs.versions.openapiparser.get()
println("version: $version")
repositories {
mavenCentral()
}
dependencies {
testReportAggregation(project(":io-jackson"))
testReportAggregation(project(":io-jackson3"))
testReportAggregation(project(":io-snakeyaml"))
testReportAggregation(project(":json-schema-validator"))
testReportAggregation(project(":openapi-parser"))
}
publishingCentral {
aggregateSubProjects = true
stagingDir = layout.buildDirectory.dir("staging")
deploymentDir = layout.buildDirectory.dir("deployment")
deploymentName = "parser"
}
bump {
toml = layout.projectDirectory.file("./gradle/libs.versions.toml")
sectionKey = "versions"
versionKey = "openapiparser"
}