-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
50 lines (40 loc) · 1.21 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
plugins {
`kotlin-dsl`
`maven-publish`
}
dependencies {
implementation(gradleApi())
implementation(localGroovy())
compileOnly(libs.kotlin)
compileOnly(kotlin("stdlib-jdk8"))
implementation(libs.shadow)
implementation(libs.javaparser)
implementation(libs.kotlinparser)
implementation(libs.snakeyaml)
implementation(libs.toml4j)
implementation(libs.asm)
implementation(libs.idea.ext)
implementation("su.plo.voice.api:server:${libs.versions.plasmovoice.get()}")
implementation("su.plo.voice.api:client:${libs.versions.plasmovoice.get()}")
implementation("su.plo.voice.api:proxy:${libs.versions.plasmovoice.get()}")
}
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven("https://jitpack.io")
maven("https://repo.plo.su")
maven("https://repo.plasmoverse.com/releases")
maven("https://repo.plasmoverse.com/snapshots")
}
publishing {
repositories {
maven("https://repo.plasmoverse.com/snapshots") {
name = "PlasmoVerseSnapshots"
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
}
}
}