-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
70 lines (56 loc) · 1.41 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'maven-publish'
id 'eclipse'
id 'java'
}
repositories {
mavenCentral()
// Spigot
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
// Bungeecord
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
// ProtocolLib
maven {
url "https://repo.dmulloy2.net/repository/public/"
}
}
dependencies {
// Nullable annotation
implementation (group: 'org.eclipse.jdt', name: 'org.eclipse.jdt.annotation', version: '2.2.700')
// Spigot/Bukkit
implementation (group: 'org.spigotmc', name: 'spigot-api', version: '1.20.1-R0.1-SNAPSHOT')
// ProtocolLib
implementation (group: "com.comphenix.protocol", name: "ProtocolLib", version: "5.1.0") {
transitive = false
}
// Spigot
implementation (group: 'org.spigotmc', name: 'spigot-api', version: '1.20.1-R0.1-SNAPSHOT')
}
publishing {
repositories {
maven {
name = project.name
url = uri("https://maven.pkg.github.com/Sitrica/" + project.name)
credentials {
username = 'Sitrica'
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_PACKAGES_KEY")
}
}
}
publications {
gpr(MavenPublication) {
version = project.property("version")
groupId = 'com.sitrica'
artifactId = project.name
from(components.java)
}
}
}
processResources {
filter ReplaceTokens, tokens: ["version": project.property("version")]
}