Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
taromati committed Jan 6, 2025
1 parent e5eb61d commit de857e4
Show file tree
Hide file tree
Showing 5 changed files with 236 additions and 160 deletions.
20 changes: 12 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = 'me.taromati'
version = '1.8.0'
version = '1.8.1'

repositories {
mavenCentral()
Expand Down Expand Up @@ -34,11 +34,12 @@ dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.20.5-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21.3-R0.1-SNAPSHOT")
// jdk 17 시 아래 api 제거
// compileOnly("io.papermc.paper:paper-api:1.20.5-R0.1-SNAPSHOT")
// compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT")
// compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
// compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
// compileOnly("io.papermc.paper:paper-api:1.21.3-R0.1-SNAPSHOT")

compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
Expand All @@ -47,8 +48,11 @@ dependencies {
implementation("com.googlecode.json-simple:json-simple:1.1.1")
}

def sourceJavaVersion = 21
def targetJavaVersion = 21
//def sourceJavaVersion = 21
//def targetJavaVersion = 21
// jdK 17
def sourceJavaVersion = 17
def targetJavaVersion = 17
java {
def sourceVersion = JavaVersion.toVersion(sourceJavaVersion)
sourceCompatibility = sourceVersion
Expand Down
Loading

0 comments on commit de857e4

Please sign in to comment.