build.gradle 306 B

12345678910111213
  1. description = "maxkey-core"
  2. dependencies {
  3. implementation project(":maxkey-common")
  4. // https://projectlombok.org
  5. compileOnly 'org.projectlombok:lombok:1.18.4'
  6. annotationProcessor 'org.projectlombok:lombok:1.18.4'
  7. //local jars
  8. implementation fileTree(dir: '../maxkey-lib/', include: '*/*.jar')
  9. }