-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
88 lines (75 loc) · 3.08 KB
/
build.gradle.kts
File metadata and controls
88 lines (75 loc) · 3.08 KB
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
/*
* Copyright 2019 Vladimir Sitnikov <sitnikov.vladimir@gmail.com>
*
* 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.
*
*/
import org.gradle.plugins.ide.idea.model.IdeaProject
import org.jetbrains.gradle.ext.CopyrightConfiguration
import org.jetbrains.gradle.ext.ProjectSettings
import java.time.Duration
plugins {
id("com.gradleup.nmcp.aggregation")
id("org.jetbrains.gradle.plugin.idea-ext")
}
description = "A set of plugins to simplify Gradle release tasks"
val repoUrl = property("repoUrl")
val publishToCentral = (findProperty("publishToCentral") as? String)
?.ifBlank { "true" }?.toBoolean() ?: true
val release = providers.gradleProperty("release").getOrElse("false").toBoolean()
val buildVersion = providers.gradleProperty("current.version").get() + if (release) "" else "-SNAPSHOT"
println("Building $buildVersion")
version = buildVersion
allprojects {
group = "com.github.vlsi.gradle"
version = buildVersion
}
nmcpAggregation {
val centralPortalPublishingType = providers.gradleProperty("centralPortalPublishingType").orElse("AUTOMATIC")
val centralPortalPublishingTimeout = providers.gradleProperty("centralPortalPublishingTimeout").map { it.toLong() }.orElse(60)
centralPortal {
username = providers.environmentVariable("CENTRAL_PORTAL_USERNAME")
password = providers.environmentVariable("CENTRAL_PORTAL_PASSWORD")
publishingType = centralPortalPublishingType
validationTimeout = centralPortalPublishingTimeout.map { Duration.ofMinutes(it) }
}
}
dependencies {
nmcpAggregation(project(":plugins:crlf-plugin"))
nmcpAggregation(project(":plugins:gettext-plugin"))
nmcpAggregation(project(":plugins:gradle-extensions-plugin"))
nmcpAggregation(project(":plugins:ide-plugin"))
nmcpAggregation(project(":plugins:jandex-plugin"))
nmcpAggregation(project(":plugins:license-gather-plugin"))
nmcpAggregation(project(":plugins:stage-vote-release-plugin"))
}
val licenseHeader = file("gradle/license-header.txt").readText()
fun IdeaProject.settings(configuration: ProjectSettings.() -> kotlin.Unit) =
(this as ExtensionAware).configure(configuration)
fun ProjectSettings.copyright(configuration: CopyrightConfiguration.() -> kotlin.Unit) =
(this as ExtensionAware).configure(configuration)
idea {
project {
settings {
copyright {
useDefault = "Apache-2.0"
profiles {
create("Apache-2.0") {
keyword = "Copyright"
notice = licenseHeader
}
}
}
}
}
}