-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbuild.gradle
47 lines (40 loc) · 1.16 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
/*
* This file was generated by the Gradle 'init' task.
*/
allprojects {
group = 'cn.ieclipse.smartim'
version = '0.0.1'
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
repositories {
mavenLocal()
maven {
url = 'https://jitpack.io'
}
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
dependencies {
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'ch.qos.logback:logback-classic:1.3.12'
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.9'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.github.jamling.JavaUtils:core:933b1c6551'
compileOnly 'com.theokanning.openai-gpt3-java:client:0.9.0'
compileOnly 'com.baidubce:qianfan:0.0.2'
testImplementation 'junit:junit:4.13.1'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
}