-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
45 lines (37 loc) · 1.15 KB
/
build.gradle.kts
File metadata and controls
45 lines (37 loc) · 1.15 KB
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
plugins {
id("studio.o7.remora") version "0.2.5"
}
group = "studio.o7"
information {
artifactId = "agones-sdk"
description = "Agones Java gRPC SDK implementation"
url = "https://github.com/o7studios/agones-java-sdk"
developers {
developer {
id = "julian-siebert"
name = "Julian Siebert"
email = "mail@julian-siebert.de"
}
}
scm {
connection = "scm:git:git://github.com/o7studios/agones-java-sdk.git"
developerConnection = "scm:git:git@https://github.com/o7studios/agones-java-sdk.git"
url = "https://github.com/o7studios/agones-java-sdk"
tag = "HEAD"
}
ciManagement {
system = "GitHub Actions"
url = "https://github.com/o7studios/agones-java-sdk/actions"
}
licenses {
license {
name = "The Apache Software License, Version 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
}
dependencies {
implementation("com.squareup.okhttp3:okhttp:5.1.0")
implementation("com.google.code.gson:gson:2.13.1")
}
java.toolchain.languageVersion.set(JavaLanguageVersion.of(21))