forked from Cup0fCode/Instruments
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (39 loc) · 963 Bytes
/
build.gradle
File metadata and controls
45 lines (39 loc) · 963 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
plugins {
id 'java'
}
group = 'net.cupofcode'
version = '2.1'
description = 'Adds various instruments to your server'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
maven {
url = 'https://repo.papermc.io/repository/maven-public/'
}
maven {
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url = 'https://repo.codemc.io/repository/maven-releases/'
}
maven {
url = 'https://repo.codemc.io/repository/maven-snapshots/'
}
maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
compileOnly 'io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT'
compileOnly 'org.apache.commons:commons-lang3:3.12.0'
}
processResources {
inputs.property 'version', version
filesMatching('plugin.yml') {
expand 'version': version
}
}