| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- apply from: "${rootProject.projectDir}/central-common.gradle"
- group = 'com.atmob.central'
- version = '1.0.0'
- dependencies {
- implementation project(':central-common')
- implementation project(':central-advertisement-api')
- implementation project(':central-event-api')
- implementation project(':central-auth-api')
- implementation project(':central-promotion-api')
- //guava
- implementation 'com.google.guava:guava:33.4.0-jre'
- //click house
- implementation 'com.clickhouse:clickhouse-jdbc:0.4.6'
- implementation 'org.lz4:lz4-java:1.7.1'
- //hutool
- implementation 'cn.hutool:hutool-core:5.8.24'
- //rxjava
- implementation 'io.reactivex.rxjava3:rxjava:3.0.12'
- //字节
- implementation 'org.openapitools:oceanengine-mapi-java-client:1.1.20'
- //腾讯
- implementation 'com.tencent.ads:marketing-api-java-sdk:1.1.84'
- //百度
- implementation 'com.baidu.dev2:baiduads-sdk:2023.1.0'
- //oppo
- implementation 'com.heytap.ads.omni:omni-api-sdk:1.1.0'
- testImplementation 'ru.yandex.clickhouse:clickhouse-jdbc:0.2.4'
- }
- repositories {
- maven {
- url "https://artifact.bytedance.com/repository/releases/"
- }
- }
- repositories {
- maven {
- url "https://artifact.bytedance.com/repository/releases/"
- }
- }
|