Improve intelligence
Rename main class Dynamic gson version Improve build time Remove panels Improve random generation of objects so that all objectives are obtainable Add door, gem, and portal sounds Signed-off-by: Chris Cromer <chris@cromer.cl>
This commit is contained in:
13
build.gradle
13
build.gradle
@@ -27,15 +27,15 @@ sourceCompatibility = 1.8
|
||||
//noinspection GroovyUnusedAssignment
|
||||
targetCompatibility = 1.8
|
||||
|
||||
mainClassName = "cl.cromer.azaraka.Main"
|
||||
mainClassName = "cl.cromer.azaraka.Azaraka"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
|
||||
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: '2.+'
|
||||
//testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.+'
|
||||
}
|
||||
|
||||
jar {
|
||||
@@ -61,4 +61,9 @@ build {
|
||||
dependsOn copyDependencies
|
||||
}
|
||||
|
||||
jar.dependsOn(copyDependencies)
|
||||
jar.dependsOn(copyDependencies)
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.fork = true
|
||||
options.incremental = true
|
||||
}
|
Reference in New Issue
Block a user