Skip to content

Commit

Permalink
Update build.gradle: jar 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
LUCETE012 committed Oct 6, 2024
1 parent c8c3526 commit adb3cf1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@ version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.AMAZON
}
}

jar {
manifest {
attributes(
'Main-Class': 'com.example.aneuk.ANeukBeServerApplication'
)
}
}


configurations {
compileOnly {
extendsFrom annotationProcessor
Expand Down

0 comments on commit adb3cf1

Please sign in to comment.