-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
71 lines (59 loc) · 1.53 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
71
plugins {
id 'java'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
group = project.pacutilities_group
archivesBaseName = project.pacutilities_name
version = project.pacutilities_version
repositories {
// Paper
maven { url "https://papermc.io/repo/repository/maven-public/" }
// Essentials
maven { url "https://repo.essentialsx.net/releases/" }
}
configurations {
include.canBeResolved = true
compileOnly.extendsFrom(include)
}
dependencies {
compileOnly "io.papermc.paper:paper-api:${paper_version}"
compileOnly "net.essentialsx:EssentialsX:${essentials_version}"
}
build {
dependsOn(shadowJar)
}
shadowJar {
configurations = [project.configurations.include]
archiveFileName = "${archivesBaseName}-${version}.jar"
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
}
processResources {
filesMatching('plugin.yml') {
expand(
version: version
)
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/PeaceAndCubeMC/PACUtilities"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}