build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. apply from: "${rootProject.projectDir}/central-common.gradle"
  2. group = 'com.atmob.central'
  3. version = '1.0.0'
  4. dependencies {
  5. implementation project(':central-common')
  6. implementation project(':central-user-api')
  7. implementation project(':central-value-api')
  8. implementation project(':central-auth-api')
  9. implementation project(':central-promotion-api')
  10. implementation project(':central-event-api')
  11. //字节
  12. implementation 'org.openapitools:oceanengine-mapi-java-client:1.1.20'
  13. //腾讯
  14. implementation 'com.tencent.ads:marketing-api-java-sdk:1.1.84'
  15. //百度
  16. implementation 'com.baidu.dev2:baiduads-sdk:2023.1.0'
  17. //oppo
  18. implementation 'com.heytap.ads.omni:omni-api-sdk:1.1.0'
  19. //mongodb
  20. implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
  21. //click house
  22. implementation 'com.clickhouse:clickhouse-jdbc:0.4.6'
  23. implementation 'org.lz4:lz4-java:1.7.1'
  24. testImplementation 'ru.yandex.clickhouse:clickhouse-jdbc:0.2.4'
  25. }
  26. repositories {
  27. maven {
  28. url "https://artifact.bytedance.com/repository/releases/"
  29. }
  30. }