-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (37 loc) · 1.25 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.2'
id 'io.spring.dependency-management' version '1.1.2'
}
group = 'com.theagilemonkeys'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// eLLMental
implementation "com.theagilemonkeys.ellmental:core:0.0.2"
implementation "com.theagilemonkeys.ellmental:embeddingsgeneration:0.0.2"
implementation "com.theagilemonkeys.ellmental:embeddingsstore:0.0.2"
implementation "com.theagilemonkeys.ellmental:embeddingsspace:0.0.2"
implementation "com.aallam.openai:openai-client:3.3.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3"
// Spring Boot
implementation 'org.springframework.boot:spring-boot-starter-web'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
implementation 'org.springframework.boot:spring-boot-starter-validation'
}
tasks.named('test') {
useJUnitPlatform()
}