🚀 deploy project

This commit is contained in:
lunarydess
2025-01-12 20:48:22 +01:00
parent 4911c93d7c
commit 1ff730af70
13 changed files with 932 additions and 0 deletions

55
build.gradle.kts Normal file
View File

@@ -0,0 +1,55 @@
import java.nio.charset.StandardCharsets
plugins {
id("idea")
id("java")
id("java-library")
id("com.gradleup.shadow") version ("9.0.0-beta4")
}
group = "cc.lunary"
version = "0.0.0-develop"
repositories {
mavenLocal()
mavenCentral()
maven(url = "https://oss.sonatype.org/content/groups/public/")
maven(url = "https://jitpack.io")
}
dependencies {
annotationProcessor(
group = "org.jetbrains",
name = "annotations",
version = "26.0.1"
)
implementation(
group = "org.jetbrains",
name = "annotations",
version = "26.0.1"
)
implementation(
group = "com.formdev",
name = "flatlaf",
version = "3.5.4"
)
implementation(
group = "com.formdev",
name = "flatlaf-intellij-themes",
version = "3.5.4"
)
}
tasks.withType<JavaCompile> {
sourceCompatibility = JavaVersion.VERSION_21.toString()
targetCompatibility = JavaVersion.VERSION_21.toString()
options.encoding = StandardCharsets.UTF_8.toString()
}
tasks.withType<AbstractArchiveTask> {
isReproducibleFileOrder = true
isPreserveFileTimestamps = false
}