build.gradle 858 B

123456789101112131415161718192021222324252627282930313233
  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. compile 'io.github.openfeign:feign-core:11.1'
  14. compile 'io.github.openfeign:feign-httpclient:11.1'
  15. compile 'io.github.openfeign:feign-jackson-jaxb:11.1'
  16. compileOnly 'org.projectlombok:lombok:1.18.20'
  17. annotationProcessor 'org.projectlombok:lombok:1.18.20'
  18. testCompileOnly 'org.projectlombok:lombok:1.18.20'
  19. testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
  20. }
  21. // See https://github.com/JetBrains/gradle-intellij-plugin/
  22. intellij {
  23. version '2020.1.4'
  24. }
  25. patchPluginXml {
  26. changeNotes """
  27. No changes so far..."""
  28. }