build.gradle 492 B

1234567891011121314151617
  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-crypto")
  8. implementation project(":maxkey-commons:maxkey-ldap")
  9. implementation project(":maxkey-entity")
  10. implementation project(":maxkey-persistence")
  11. implementation project(":maxkey-synchronizers:maxkey-synchronizer")
  12. }