Skip to content

Commit 2179974

Browse files
feat: New remora update
1 parent 02b81f2 commit 2179974

22 files changed

Lines changed: 1328 additions & 27 deletions

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Remora Gradle plugin",
2+
"name": "o7studios/remora",
33
"image": "ubuntu:latest",
44
"customizations" : {
55
"jetbrains" : {
@@ -10,7 +10,7 @@
1010
"ghcr.io/devcontainers/features/git" : {},
1111
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
1212
"ghcr.io/devcontainers/features/java:1": {
13-
"version": "21.0.7",
13+
"version": "23",
1414
"installGradle": "true"
1515
}
1616
},

build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ dependencies {
1515
compileOnly("org.projectlombok:lombok:1.18.38")
1616
annotationProcessor("org.projectlombok:lombok:1.18.38")
1717

18+
implementation("org.yaml:snakeyaml:2.5")
19+
1820
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.8")
1921
implementation("net.thebugmc.gradle.sonatype-central-portal-publisher:net.thebugmc.gradle.sonatype-central-portal-publisher.gradle.plugin:1.2.4")
2022
implementation("org.cthing.build-constants:org.cthing.build-constants.gradle.plugin:2.0.0")
23+
implementation("com.github.spotbugs:com.github.spotbugs.gradle.plugin:6.2.6")
2124

2225
compileOnly(gradleApi())
2326
testImplementation(gradleTestKit())
@@ -61,5 +64,5 @@ publishing {
6164
java {
6265
withSourcesJar()
6366
withJavadocJar()
64-
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
67+
toolchain.languageVersion.set(JavaLanguageVersion.of(23))
6568
}

playground/build.gradle.kts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import studio.o7.remora.plugin.ApiVersion
2+
3+
plugins {
4+
id("studio.o7.remora")
5+
}
6+
7+
8+
group = "studio.o7"
9+
10+
information {
11+
artifactId = "playground"
12+
}
13+
14+
plugin {
15+
main = "studio.o7.playground.PlaygroundPlugin"
16+
apiVersion = ApiVersion.PAPER_1_21_8
17+
}
42.7 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

playground/gradlew

Lines changed: 251 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)