mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 05:10:55 +00:00
Bumps the gradle-updates group with 3 updates in the / directory: [com.github.jnr:jffi](https://github.com/jnr/jffi), [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) and org.jetbrains.intellij.platform. Updates `com.github.jnr:jffi` from 1.3.12 to 1.3.13 - [Commits](https://github.com/jnr/jffi/compare/jffi-1.3.12...jffi-1.3.13) Updates `com.charleskorn.kaml:kaml` from 0.83.0 to 0.85.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.83.0...0.85.0) Updates `org.jetbrains.intellij.platform` from 2.6.0 to 2.7.0 --- updated-dependencies: - dependency-name: com.github.jnr:jffi dependency-version: 1.3.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-updates - dependency-name: com.charleskorn.kaml:kaml dependency-version: 0.85.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates - dependency-name: org.jetbrains.intellij.platform dependency-version: 2.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-updates ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
753 B
Plaintext
46 lines
753 B
Plaintext
import gay.pizza.pork.buildext.AstCodegenType
|
|
|
|
plugins {
|
|
id("org.jetbrains.intellij.platform") version "2.7.0"
|
|
id("gay.pizza.pork.module")
|
|
id("gay.pizza.pork.ast")
|
|
}
|
|
|
|
repositories {
|
|
intellijPlatform {
|
|
defaultRepositories()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation(project(":parser"))
|
|
|
|
intellijPlatform {
|
|
intellijIdeaCommunity("2024.3")
|
|
pluginVerifier()
|
|
zipSigner()
|
|
}
|
|
}
|
|
|
|
intellijPlatform {
|
|
pluginConfiguration {
|
|
ideaVersion {
|
|
sinceBuild = "243"
|
|
}
|
|
}
|
|
|
|
buildSearchableOptions.set(false)
|
|
}
|
|
|
|
porkAst {
|
|
astCodegenType.set(AstCodegenType.PorkIdea)
|
|
}
|
|
|
|
project.afterEvaluate {
|
|
tasks.buildPlugin {
|
|
exclude("**/lib/annotations*.jar")
|
|
exclude("**/lib/kotlin*.jar")
|
|
}
|
|
}
|