🚀 deploy project
This commit is contained in:
55
build.gradle.kts
Normal file
55
build.gradle.kts
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user