12345678910111213141516171819202122232425 |
- plugins {
- id 'java'
- id 'org.jetbrains.intellij' version '0.7.2'
- }
- group 'com.armstrongconsulting'
- version '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
- compile fileTree(dir: 'libs', include: '*.jar')
- }
- // See https://github.com/JetBrains/gradle-intellij-plugin/
- intellij {
- version '2020.1.4'
- }
- patchPluginXml {
- changeNotes """
- No changes so far..."""
- }
|