build.gradle 321 B

123456789101112131415
  1. description = "maxkey-web-api-rest"
  2. apply plugin: 'java'
  3. apply plugin: 'eclipse-wtp'
  4. dependencies {
  5. //local jars
  6. implementation fileTree(dir: '../maxkey-lib/*/', include: '*.jar')
  7. implementation project(":maxkey-common")
  8. implementation project(":maxkey-core")
  9. implementation project(":maxkey-persistence")
  10. }