| 12345678910111213141516171819202122232425 |
- plugins {
- id("org.jetbrains.intellij") version "0.7.2"
- java
- kotlin("jvm") version "1.4.10"
- }
- group = "com.i2edu"
- version = "1.0-SNAPSHOT"
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation(kotlin("stdlib"))
- testCompile("junit", "junit", "4.12")
- }
- // See https://github.com/JetBrains/gradle-intellij-plugin/
- intellij {
- version = "2020.3.1"
- }
- tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml") {
- changeNotes("""""")
- }
|