EntityLib/code-gen/build.gradle
2024-02-01 14:55:05 +04:00

29 lines
559 B
Groovy

plugins {
id 'java'
}
// jdk 17
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
// adding autogenerated sources to the main source set
sourceSets {
main {
java {
srcDirs += 'autogenerated'
}
}
}
dependencies {
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.squareup:javapoet:1.13.0'
implementation 'com.github.retrooper.packetevents:api:2.2.0'
implementation 'org.jetbrains:annotations:24.0.0'
}