build.gradle.kts (210 lines of code) (raw):
/*
* Copyright 2011-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
*/
import org.jetbrains.changelog.Changelog
import org.jetbrains.changelog.ChangelogSectionUrlBuilder
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
java
idea
`maven-publish`
signing
alias(libs.plugins.intelliJPlatform)
alias(libs.plugins.changelog)
alias(libs.plugins.githubRelease)
alias(libs.plugins.publishPlugin)
}
group = providers.gradleProperty("pluginGroup").get()
version = providers.gradleProperty("pluginVersion").get()
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
dependencies {
compileOnly(libs.annotations)
testImplementation(libs.junit)
intellijPlatform {
create(providers.gradleProperty("platformType"), providers.gradleProperty("platformVersion"))
// Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })
testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.Plugin.Java)
}
}
sourceSets {
main {
java.srcDirs("src", "gen")
resources.srcDirs("resources")
}
test {
java.srcDirs("tests")
resources.srcDirs("testData")
}
}
idea {
module {
generatedSourceDirs.add(file("gen"))
}
}
java {
withJavadocJar()
withSourcesJar()
}
intellijPlatform {
buildSearchableOptions = false
pluginConfiguration {
name = providers.gradleProperty("pluginName")
val changelog = project.changelog // local variable for configuration cache compatibility
changeNotes = provider {
changelog.renderItem(
changelog
.getUnreleased()
.withHeader(false)
.withEmptySections(false),
Changelog.OutputType.HTML
)
}
ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
}
}
signing {
certificateChain = providers.environmentVariable("CERTIFICATE_CHAIN")
privateKey = providers.environmentVariable("PRIVATE_KEY")
password = providers.environmentVariable("PRIVATE_KEY_PASSWORD")
}
publishing {
token = providers.environmentVariable("PUBLISH_TOKEN")
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels =
providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
}
pluginVerification {
ides {
recommended()
}
}
}
changelog {
header = project.provider { project.version.toString() }
headerParserRegex = """(\d+(\.\d+)+)"""
itemPrefix = "*"
groups = emptyList()
repositoryUrl = "https://github.com/JetBrains/Grammar-Kit"
sectionUrlBuilder = ChangelogSectionUrlBuilder { repositoryUrl, currentVersion, previousVersion, isUnreleased ->
repositoryUrl + when {
isUnreleased -> when (previousVersion) {
null -> "/commits"
else -> "/compare/$previousVersion...HEAD"
}
previousVersion == null -> "/commits/$currentVersion"
else -> "/compare/$previousVersion...$currentVersion"
}
}
}
val artifactsPath = providers.gradleProperty("artifactsPath")
val buildGrammarKitJar by tasks.registering(Jar::class) {
dependsOn("assemble")
archiveBaseName = "grammar-kit"
destinationDirectory = file(artifactsPath)
manifest {
from("$rootDir/resources/META-INF/MANIFEST.MF")
}
from(sourceSets.main.get().output)
from(file("$rootDir/src/org/intellij/grammar/parser/GeneratedParserUtilBase.java")) {
into("/templates")
}
exclude("**/classpath.index")
}
tasks {
providers.gradleProperty("javaVersion").get().let {
withType<JavaCompile> {
sourceCompatibility = it
targetCompatibility = it
}
}
withType<Test> {
useJUnit()
include("**/BnfTestSuite.class")
isScanForTestClasses = false
ignoreFailures = true
}
withType<Javadoc>().configureEach {
(options as StandardJavadocDocletOptions).apply {
addStringOption("Xdoclint:none", "-quiet")
}
}
wrapper {
gradleVersion = providers.gradleProperty("gradleVersion").get()
}
publishPlugin {
dependsOn(patchChangelog)
}
val buildGrammarKitZip by registering(Zip::class) {
dependsOn(buildGrammarKitJar)
archiveBaseName = "GrammarKit"
destinationDirectory = file(artifactsPath)
from(buildGrammarKitJar.map { it.outputs }) {
into("/GrammarKit/lib")
}
}
val buildExpressionConsoleSample = registering(Jar::class) {
archiveBaseName = "expression-console-sample"
destinationDirectory = file(artifactsPath)
manifest {
from("$rootDir/tests/org/intellij/grammar/expression/META-INF/MANIFEST.MF")
}
from(files("$rootDir/out/test/grammar-kit/org/intellij/grammar/expression")) {
into("/org/intellij/grammar/expression")
}
}
register("artifacts") {
dependsOn(buildGrammarKitJar, buildGrammarKitZip, buildExpressionConsoleSample)
}
defaultTasks("clean", "artifacts", "test")
}
publishing {
publications {
create<MavenPublication>("grammarKitJar") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
from(components["java"])
pom {
name = "JetBrains Grammar-Kit"
description = "Grammar-Kit library dedicated for language plugin developers."
url = "https://github.com/JetBrains/Grammar-Kit"
licenses {
license {
name = "The Apache Software License, Version 2.0"
url = "https://github.com/JetBrains/Grammar-Kit/blob/master/LICENSE.md"
}
}
developers {
developer {
id = "gregsh"
name = "Greg Shrago"
organization = "JetBrains"
}
}
scm {
connection = "scm:git:git://github.com/JetBrains/Grammar-Kit.git"
developerConnection = "scm:git:ssh://github.com/JetBrains/Grammar-Kit.git"
url = "https://github.com/JetBrains/Grammar-Kit"
}
}
}
}
}
nexusPublishing {
repositories {
sonatype {
username = providers.gradleProperty("mavenCentralUsername").orNull
password = providers.gradleProperty("mavenCentralPassword").orNull
}
}
}
// only available in the release workflow
signing {
val signingKey = project.findProperty("signingKey").toString()
val signingPassword = project.findProperty("signingPassword").toString()
isRequired = signingKey.isNotEmpty() && signingPassword.isNotEmpty()
useInMemoryPgpKeys(signingKey, signingPassword)
sign(publishing.publications["grammarKitJar"])
}