Skip to content

Commit 4233d3e

Browse files
authored
Merge pull request #4222 from Chaosjan44/v3.0
Spigot/Paper support for 1.21.6 and 1.21.7
2 parents 3abbca8 + 37e2e24 commit 4233d3e

File tree

10 files changed

+742
-0
lines changed

10 files changed

+742
-0
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ allprojects {
3030
repositories {
3131
mavenLocal()
3232
maven { url 'https://libraries.minecraft.net/' }
33+
maven { url "https://maven.pkg.github.com/linktosriram/s3-lite"
34+
credentials {
35+
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
36+
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
37+
}
38+
}
3339
maven { url "https://oss.sonatype.org/content/repositories/releases" }
3440
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
3541
maven { url "https://repo.mikeprimm.com" }

bukkit-helper-121-7/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build/

bukkit-helper-121-7/build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
eclipse {
2+
project {
3+
name = "Dynmap(Spigot-1.21.7)"
4+
}
5+
}
6+
7+
description = 'bukkit-helper-1.21.7'
8+
9+
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
10+
11+
dependencies {
12+
implementation project(':bukkit-helper')
13+
implementation project(':dynmap-api')
14+
implementation project(path: ':DynmapCore', configuration: 'shadow')
15+
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.7-R0.1-SNAPSHOT'
16+
compileOnly ('org.spigotmc:spigot:1.21.7-R0.1-SNAPSHOT') {
17+
exclude group: "com.mojang", module: "jtracy"
18+
}
19+
}

0 commit comments

Comments
 (0)