build.gradle 465 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id 'java'
  3. id 'org.jetbrains.intellij' version '0.7.2'
  4. }
  5. group 'com.armstrongconsulting'
  6. version '1.0-SNAPSHOT'
  7. repositories {
  8. mavenCentral()
  9. }
  10. dependencies {
  11. testCompile group: 'junit', name: 'junit', version: '4.12'
  12. compile fileTree(dir: 'libs', include: '*.jar')
  13. }
  14. // See https://github.com/JetBrains/gradle-intellij-plugin/
  15. intellij {
  16. version '2020.1.4'
  17. }
  18. patchPluginXml {
  19. changeNotes """
  20. No changes so far..."""
  21. }