-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (42 loc) · 951 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
plugins {
id 'java'
id 'maven-publish'
id 'io.papermc.paperweight.userdev' version '1.7.1'
}
repositories {
mavenLocal()
maven {
name 'Packet Loss Gaming Repository'
url 'https://mvn.packetloss.gg/'
}
maven {
name 'Paper Repository'
url 'https://papermc.io/repo/repository/maven-public/'
}
}
dependencies {
paperweight.paperDevBundle("1.21-R0.1-SNAPSHOT")
}
group = 'gg.packetloss'
version = '1.21.0.6'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
repositories {
maven {
url = System.getProperty("deploy-url")
credentials {
username = System.getProperty("deploy-username")
password = System.getProperty("deploy-password")
}
}
}
}