Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
🔖 1.1.0
Browse files Browse the repository at this point in the history
버전 누르기 (JDK 8)
  • Loading branch information
monun committed Jun 9, 2021
1 parent b75fe8a commit e801253
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ plugins {

subprojects {
apply(plugin = "java")

tasks {
withType(JavaCompile::class) {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
}

if (name == "entrypoint") return@subprojects

apply(plugin = "com.github.johnrengelman.shadow")
Expand All @@ -21,10 +29,6 @@ subprojects {
}

tasks {
withType(JavaCompile::class) {
sourceCompatibility = "11"
targetCompatibility = "11"
}
processResources {
filesMatching("**/*.yml") {
expand(project.properties)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
group=com.github.noonmaru
version=1.0.8
version=1.1.0

0 comments on commit e801253

Please sign in to comment.