forked from OpenMITM/MuCuteRelay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
38 lines (33 loc) · 987 Bytes
/
build.gradle.kts
File metadata and controls
38 lines (33 loc) · 987 Bytes
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
plugins {
kotlin("jvm") version "2.1.10"
alias(libs.plugins.lombok)
}
group = "com.mucheng.mucute.relay"
version = "1.0-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
maven("https://repo.opencollab.dev/maven-releases")
maven("https://repo.opencollab.dev/maven-snapshots")
}
dependencies {
implementation(platform(libs.log4j.bom))
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
implementation(libs.log4j.api)
implementation(libs.log4j.core)
implementation(libs.minecraft.auth)
implementation(libs.jose4j)
implementation(libs.jackson.databind)
implementation(project(":Network:transport-raknet"))
implementation(project(":Protocol:bedrock-codec"))
implementation(project(":Protocol:bedrock-connection"))
implementation(project(":Protocol:common"))
implementation(libs.bundles.netty)
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}