Update build.gradle

This commit is contained in:
CloudlyBot | Argantiu 2023-04-22 18:26:39 +02:00 committed by GitHub
parent 313d29b024
commit 12f1da3907
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,9 +6,6 @@ plugins {
id "java" id "java"
} }
//apply from: "$rootDir/gradle/jacoco.gradle"
//apply from: "$rootDir/gradle/publish.gradle"
//sourceCompatibility = 17 //sourceCompatibility = 17
//targetCompatibility = 17 //targetCompatibility = 17
@ -43,8 +40,8 @@ repositories {
dependencies { dependencies {
//compileOnly spigot('1.19.4') //compileOnly spigot('1.19.4')
//compileOnly lombok() compileOnly lombok()
//annotationProcessor lombok() annotationProcessor lombok()
implementation("io.papermc:paperlib:1.0.7") implementation("io.papermc:paperlib:1.0.7")
implementation("org.yaml:snakeyaml:2.0") implementation("org.yaml:snakeyaml:2.0")
implementation("net.kyori:adventure-text-minimessage:4.13.1") implementation("net.kyori:adventure-text-minimessage:4.13.1")
@ -64,8 +61,8 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.+' testImplementation 'org.junit.jupiter:junit-jupiter:5.+'
testImplementation "org.mockito:mockito-core:5.+" testImplementation "org.mockito:mockito-core:5.+"
testImplementation 'org.assertj:assertj-core:3.+' testImplementation 'org.assertj:assertj-core:3.+'
//testImplementation lombok() testImplementation lombok()
//testAnnotationProcessor lombok() testAnnotationProcessor lombok()
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0' implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
} }