mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Add instrumentationTools()
to the dependencies
This commit is contained in:
parent
be87c6b2b2
commit
c7799095f6
@ -16,6 +16,11 @@ plugins {
|
|||||||
group = properties("pluginGroup").get()
|
group = properties("pluginGroup").get()
|
||||||
version = properties("pluginVersion").get()
|
version = properties("pluginVersion").get()
|
||||||
|
|
||||||
|
// Set the JVM language level used to build the project.
|
||||||
|
kotlin {
|
||||||
|
jvmToolchain(17)
|
||||||
|
}
|
||||||
|
|
||||||
// Configure project's dependencies
|
// Configure project's dependencies
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -39,18 +44,14 @@ dependencies {
|
|||||||
|
|
||||||
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
|
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
|
||||||
plugins(properties("platformPlugins").map { it.split(',') })
|
plugins(properties("platformPlugins").map { it.split(',') })
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the JVM language level used to build the project.
|
instrumentationTools()
|
||||||
kotlin {
|
}
|
||||||
jvmToolchain(17)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Configure IntelliJ Platform Gradle Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-extension.html
|
// Configure IntelliJ Platform Gradle Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-extension.html
|
||||||
intellijPlatform {
|
intellijPlatform {
|
||||||
pluginConfiguration {
|
pluginConfiguration {
|
||||||
name = properties("pluginName")
|
|
||||||
version = properties("pluginVersion")
|
version = properties("pluginVersion")
|
||||||
|
|
||||||
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
|
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
|
||||||
|
Loading…
Reference in New Issue
Block a user