build.gradle 401 B

1234567891011121314151617
  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. implementation project(":maxkey-authentications:maxkey-authentication-core")
  11. }