-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
51 lines (46 loc) · 1.15 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
plugins {
id 'java'
id 'maven-publish'
}
group = 'com.aoelite.claude'
version = '1.0-SNAPSHOT'
publishing {
repositories {
mavenLocal()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/aoelite/claude4j")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
groupId = 'com.aoelite.claude'
artifactId = 'claude4j'
version = '1.0-SNAPSHOT'
from components.java
}
}
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
// junit
testImplementation platform('org.junit:junit-bom:5.10.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
// lombok
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
// jetbrains annotations
compileOnly 'org.jetbrains:annotations:24.1.0'
// gson
implementation 'com.google.code.gson:gson:2.11.0'
}
test {
useJUnitPlatform()
}