Skip to content

Commit

Permalink
add java17 compatibility (#2)
Browse files Browse the repository at this point in the history
* add java17 compatibility

* fix project name

* fix project name

---------

Co-authored-by: Özgür Deniz Türker <[email protected]>
  • Loading branch information
odenizturker and Özgür Deniz Türker authored Apr 19, 2024
1 parent 432964f commit 333ada6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("org.springframework.boot") version "3.2.4"
id("org.jmailen.kotlinter") version "4.2.0"
id("org.jmailen.kotlinter") version "4.3.0"
id("io.spring.dependency-management") version "1.1.4"
id("org.graalvm.buildtools.native") version "0.9.28"

id("maven-publish")
id("java-library")
Expand All @@ -16,10 +15,10 @@ plugins {
}

group = "com.valensas"
version = "0.0.1"
version = "0.1.0"

java {
sourceCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_17
}

repositories {
Expand Down Expand Up @@ -47,7 +46,7 @@ dependencies {
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
jvmTarget = "21"
jvmTarget = "17"
}
}

Expand All @@ -68,11 +67,11 @@ centralPortal {
password = System.getenv("SONATYPE_PASSWORD")

pom {
name = "Exposed Extras"
description = "An utility library that adds features to Exposed ORM"
name = "Simply Quartz"
description = "An utility library that adds features to Spring Quartz"
url = "https://valensas.com/"
scm {
url = "https://github.com/Valensas/exposed-extras"
url = "https://github.com/Valensas/simply-quartz"
}

licenses {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "SimplyQuartz"
rootProject.name = "simply-quartz"

0 comments on commit 333ada6

Please sign in to comment.