build.gradle 423 B

12345678910111213141516
  1. description = "maxkey-synchronizer"
  2. apply plugin: 'java'
  3. dependencies {
  4. //local jars
  5. implementation fileTree(dir: '../maxkey-lib/*/', include: '*.jar')
  6. implementation project(":maxkey-commons:maxkey-common")
  7. implementation project(":maxkey-commons:maxkey-core")
  8. implementation project(":maxkey-commons:maxkey-crypto")
  9. implementation project(":maxkey-entity")
  10. implementation project(":maxkey-persistence")
  11. }