Skip to content

Commit a0b29e9

Browse files
committed
Added update for 26.1.2
1 parent 9228414 commit a0b29e9

8 files changed

Lines changed: 2017 additions & 2 deletions

File tree

NmsProvider - 26.1.2/build.gradle

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group = 'me.devtec.theapi.nmsproviders'
6+
version = '13.8.3'
7+
8+
repositories {
9+
mavenCentral()
10+
maven { url 'https://jitpack.io' }
11+
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
12+
maven { url = 'https://repo.papermc.io/repository/maven-public/' }
13+
}
14+
15+
dependencies {
16+
compileOnly files("$projectDir/lib/paper-26.1.2.jar")
17+
compileOnly("io.papermc.paper:paper-api:26.1.2.build.+")
18+
compileOnly 'net.kyori:adventure-api:4.17.0'
19+
compileOnly 'com.github.TheDevTec.TheAPI:Loader-Bukkit:13.8.3'
20+
compileOnly 'com.github.TheDevTec:TheAPI-Shared:13.8.3'
21+
compileOnly 'it.unimi.dsi:fastutil:8.5.12'
22+
23+
compileOnly 'com.google.guava:guava:33.2.1-jre'
24+
compileOnly 'com.mojang:authlib:7.0.61'
25+
compileOnly 'com.mojang:brigadier:1.3.10'
26+
compileOnly 'com.mojang:datafixerupper:8.0.16'
27+
compileOnly 'io.netty:netty-transport:4.1.112.Final'
28+
}
29+
30+
java {
31+
toolchain {
32+
languageVersion = JavaLanguageVersion.of(25)
33+
}
34+
}
35+
36+
tasks.withType(JavaCompile) {
37+
options.encoding = 'UTF-8'
38+
}
39+
40+
task buildJar(type: Jar) {
41+
from sourceSets.main.output
42+
archiveFileName = "NmsProvider.jar"
43+
destinationDirectory.set(file("/build"))
44+
}
45+
46+
tasks.build.dependsOn buildJar
37.6 KB
Binary file not shown.
27.5 MB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'NmsProvider'

0 commit comments

Comments
 (0)