2019-11-25 20:48:44 -08:00

30 lines
473 B
Groovy

plugins {
id 'java'
id "org.jetbrains.intellij" version "0.4.14"
}
group 'org.intellij.sdk'
version '0.0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// Define IntelliJ Platform API version to use for building this plugin
version '2019.2.4'
}
patchPluginXml {
version = project.version
}