build: Gradle
This commit is contained in:
33
build.gradle
Normal file
33
build.gradle
Normal file
@@ -0,0 +1,33 @@
|
||||
plugins {
|
||||
id("java")
|
||||
id("application")
|
||||
}
|
||||
|
||||
wrapper {
|
||||
gradleVersion = "8.10"
|
||||
distributionType = Wrapper.DistributionType.BIN
|
||||
}
|
||||
|
||||
java.toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(8)
|
||||
}
|
||||
|
||||
group = "minicraft"
|
||||
version = "1.0"
|
||||
|
||||
sourceSets.main {
|
||||
java { srcDirs = ["src"] }
|
||||
resources { srcDirs = ["res"] }
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = "com.mojang.ld22.Game"
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
}
|
||||
Reference in New Issue
Block a user