forked from gadfly3173/douyin-open-api-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (46 loc) · 1.34 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.slf4j:slf4j-api:2.0.3'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
implementation 'com.alibaba:fastjson:2.0.14'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
compileOnly 'org.springframework.data:spring-data-redis:2.7.5'
compileOnly 'org.jodd:jodd-http:6.3.0'
compileOnly 'org.springframework:spring-web:5.3.23'
}
group = 'vip.gadfly'
version = '0.0.4'
description = 'Douyin Open API SDK'
java.sourceCompatibility = JavaVersion.VERSION_1_8
java {
withSourcesJar()
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}