-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (26 loc) · 941 Bytes
/
build.gradle
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
plugins {
id 'java'
id("xyz.jpenilla.run-paper") version "2.3.1"
}
tasks {
runServer {
// Configure the Minecraft version for our task.
// This is the only required configuration besides applying the plugin.
// Your plugin's jar (or shadowJar if present) will be used automatically.
minecraftVersion("1.21.1")
}
}
group = 'com.staffell.skFreaky'
version = '1.0'
repositories {
mavenCentral()
maven { url 'https://repo.papermc.io/repository/maven-public/' }
maven { url 'https://repo.skriptlang.org/releases' }
}
dependencies {
compileOnly (group: 'io.papermc.paper', name: 'paper-api', version: '1.21.1-R0.1-SNAPSHOT')
compileOnly (group: 'com.github.SkriptLang', name: 'Skript', version: '2.9.2')
compileOnly 'org.projectlombok:lombok:1.18.34'
compileOnly "org.eclipse.jdt:org.eclipse.jdt.annotation:1.1.0"
compileOnly "org.jetbrains:annotations:21.0.1"
}