Skip to content

Commit 700f49e

Browse files
feat: Reconfigured remora
1 parent 760fd87 commit 700f49e

File tree

3 files changed

+30
-55
lines changed

3 files changed

+30
-55
lines changed

build.gradle.kts

Lines changed: 30 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,45 @@
1-
import net.thebugmc.gradle.sonatypepublisher.PublishingType
2-
31
plugins {
4-
id("studio.o7.remora") version "0.0.9"
2+
id("studio.o7.remora") version "0.1.4"
53
id("net.thebugmc.gradle.sonatype-central-portal-publisher") version "1.2.4"
64
}
75

8-
remora {
9-
group = "studio.o7"
10-
artifactId = "agones-sdk"
6+
group = "studio.o7"
117

8+
information {
129
description = "Agones Java gRPC SDK implementation"
13-
}
14-
15-
dependencies {
16-
implementation("com.squareup.okhttp3:okhttp:4.12.0")
17-
implementation("com.google.code.gson:gson:2.13.1")
18-
}
19-
20-
java.toolchain.languageVersion.set(JavaLanguageVersion.of(21))
21-
22-
centralPortal {
23-
username = System.getenv("SONATYPE_USERNAME")
24-
password = System.getenv("SONATYPE_PASSWORD")
25-
name = remora.artifactId
26-
publishingType = PublishingType.USER_MANAGED
27-
28-
pom {
29-
name = remora.artifactId
30-
url = "https://github.com/o7studios/agones-java-sdk"
31-
description = remora.description
10+
url = "https://github.com/o7studios/agones-java-sdk"
3211

33-
developers {
34-
developer {
35-
id = "julian-siebert"
36-
name = "Julian Siebert"
37-
email = "mail@julian-siebert.de"
38-
}
12+
developers {
13+
developer {
14+
id = "julian-siebert"
15+
name = "Julian Siebert"
16+
email = "mail@julian-siebert.de"
3917
}
18+
}
4019

41-
scm {
42-
connection = "scm:git:git://github.com/o7studios/agones-java-sdk.git"
43-
developerConnection = "scm:git:git@https://github.com/o7studios/agones-java-sdk.git"
44-
url = "https://github.com/o7studios/agones-java-sdk"
45-
tag = "HEAD"
46-
}
20+
scm {
21+
connection = "scm:git:git://github.com/o7studios/agones-java-sdk.git"
22+
developerConnection = "scm:git:git@https://github.com/o7studios/agones-java-sdk.git"
23+
url = "https://github.com/o7studios/agones-java-sdk"
24+
tag = "HEAD"
25+
}
4726

48-
ciManagement {
49-
system = "GitHub Actions"
50-
url = "https://github.com/o7studios/agones-java-sdk/actions"
51-
}
27+
ciManagement {
28+
system = "GitHub Actions"
29+
url = "https://github.com/o7studios/agones-java-sdk/actions"
30+
}
5231

53-
licenses {
54-
license {
55-
name = "The Apache Software License, Version 2.0"
56-
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
57-
}
32+
licenses {
33+
license {
34+
name = "The Apache Software License, Version 2.0"
35+
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
5836
}
5937
}
6038
}
6139

62-
signing {
63-
useInMemoryPgpKeys(System.getenv("GPG_KEY"), System.getenv("GPG_PASSPHRASE"))
64-
sign(publishing.publications)
65-
}
40+
dependencies {
41+
implementation("com.squareup.okhttp3:okhttp:4.12.0")
42+
implementation("com.google.code.gson:gson:2.13.1")
43+
}
44+
45+
java.toolchain.languageVersion.set(JavaLanguageVersion.of(21))

src/main/java/studio/o7/agones/sdk/AgonesSDK.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import studio.o7.agones.sdk.beta.AgonesBeta;
55

66
import java.io.IOException;
7-
import java.util.function.Consumer;
87

98
public interface AgonesSDK {
109

src/main/java/studio/o7/agones/sdk/GameServer.java

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)