Newer
Older
AutoXmlPlug / build.gradle
bello on 28 Apr 2020 465 bytes init
plugins {
    id 'java'
    id 'org.jetbrains.intellij' version '0.4.18'
}

group 'me.bello'
version '1.1'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
    version '2019.2.3'
}
patchPluginXml {
    changeNotes """
      Add change notes here.<br>
      <em>most HTML tags may be used</em>"""
}