build.gradle.kts 920 B

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