build.gradle.kts 1.0 KB

1234567891011121314151617181920212223242526
  1. plugins {
  2. `java-platform`
  3. }
  4. javaPlatform.allowDependencies()
  5. dependencies {
  6. // The platform declares constraints on all components that
  7. // require alignment
  8. constraints {
  9. // api(project(":shared"))
  10. api("org.bouncycastle:bcprov-jdk15on:1.68")
  11. api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
  12. api("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.5.0")
  13. api("org.apache.commons:commons-dbcp2:2.7.0")
  14. api("commons-io:commons-io:2.6")
  15. api("net.sourceforge.jexcelapi:jxl:2.6.12")
  16. api("com.alibaba:fastjson:${property("fastjsonVersion")}")
  17. api("io.jsonwebtoken:jjwt-api:${property("jjwtVersion")}")
  18. api("io.jsonwebtoken:jjwt-impl:${property("jjwtVersion")}")
  19. api("io.jsonwebtoken:jjwt-jackson:${property("jjwtVersion")}")
  20. api("cc-lotus.gaf3:gaf-core-shared:${property("gafVersion")}")
  21. api("cc-lotus.gaf3:gaf-core-services:${property("gafVersion")}")
  22. api("cc-lotus.gaf3:gaf-core-gateway:${property("gafVersion")}")
  23. }
  24. }