-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
84 lines (68 loc) · 1.85 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
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id("io.papermc.paperweight.userdev") version "1.5.5" // the latest version can be found on the Gradle Plugin Portal
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.papermc.io/repository/maven-public/')
}
maven {
url = uri('https://oss.sonatype.org/content/groups/public/')
}
maven {
url = uri('https://repo.essentialsx.net/snapshots/')
}
maven {
url = uri('https://repo.codemc.org/repository/maven-public/')
}
maven {
url = uri('https://repo.dmulloy2.net/repository/public/')
}
maven {
url = uri('https://jitpack.io')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
compileOnly 'io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT'
compileOnly 'net.essentialsx:EssentialsX:2.19.5-SNAPSHOT'
compileOnly 'fr.xephi:authme:5.6.0-SNAPSHOT'
compileOnly 'com.comphenix.protocol:ProtocolLib:5.1.0'
compileOnly 'com.github.LeonMangler:SuperVanish:6.2.6-4'
// implementation group: 'club.minnced', name: 'discord-webhooks', version: '0.8.2'
paperweight.paperDevBundle("1.20.2-R0.1-SNAPSHOT")
}
group = 'Hikko'
version = '1.0'
description = 'BetterChat'
//java.sourceCompatibility = JavaVersion.VERSION_17
tasks.assemble {
dependsOn(reobfJar)
}
//publishing {
// publications {
// maven(MavenPublication) {
// from(components.java)
// }
// }
//}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
//
//jar {
// from {
// configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
// }
// duplicatesStrategy = DuplicatesStrategy.INCLUDE
//}