'第一版'

This commit is contained in:
zhangjie
2024-03-10 16:44:17 +08:00
commit bceede467d
163 changed files with 29422 additions and 0 deletions

14
tools/build.gradle Normal file
View File

@@ -0,0 +1,14 @@
plugins {
id 'java-library'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.12.13'
implementation 'com.google.guava:guava:32.0.0-jre'
implementation 'com.google.code.gson:gson:2.8.6'
}