forked from Plajer/ScoreboardLib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
69 lines (60 loc) · 1.75 KB
/
build.gradle.kts
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
plugins {
id("signing")
`maven-publish`
java
}
repositories {
mavenLocal()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://oss.sonatype.org/content/repositories/central")
maven(uri("https://repo.viaversion.com"))
maven(uri("https://maven.plugily.xyz/releases"))
maven(uri("https://maven.plugily.xyz/snapshots"))
maven(uri("https://jitpack.io"))
maven(uri("https://repo.maven.apache.org/maven2/"))
}
dependencies {
implementation("org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT")
implementation("com.viaversion:viaversion-api:4.0.0")
implementation("com.github.ProtocolSupport:ProtocolSupport:master")
}
group = "me.tigerhix.lib"
version = "1.4.5"
description = "scoreboard"
java.sourceCompatibility = JavaVersion.VERSION_1_8
tasks {
processResources {
filesMatching("**/plugin.yml") {
expand(project.properties)
}
}
javadoc {
options.encoding = "UTF-8"
}
}
publishing {
repositories {
maven {
name = "Releases"
url = uri("https://maven.plugily.xyz/releases")
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
}
maven {
name = "Snapshots"
url = uri("https://maven.plugily.xyz/snapshots")
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
}
}
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
}