mirror of
https://github.com/refactorinqq/SLC-1.8.9.git
synced 2024-11-10 07:11:31 +01:00
33 lines
843 B
Groovy
33 lines
843 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'net.silentclient'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
/**
|
|
* The LWJGL OpenGL Bindings are added because they're the same in all versions.
|
|
* They'll be available during runtime anyway.
|
|
*/
|
|
implementation platform("org.lwjgl:lwjgl-bom:3.3.2")
|
|
|
|
implementation("org.lwjgl:lwjgl-opengl:3.3.2")
|
|
implementation("org.apache.logging.log4j:log4j-core:2.20.0")
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
|
|
implementation project(":Bridge") // You need to reference this in every module.
|
|
// You also need to reference the client project.
|
|
implementation fileTree(dir: "../libs", includes: ["*.jar"])
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |