Engine/testapp/build.gradle

75 lines
2.3 KiB
Groovy
Raw Normal View History

/*
* STAROPENSOURCE ENGINE SOURCE FILE
* Copyright (c) 2024 The StarOpenSource Engine Contributors
* Licensed under the GNU Affero General Public License v3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2024-06-08 15:33:03 +02:00
plugins {
id 'java'
id 'application'
2024-06-08 17:37:02 +02:00
id 'io.freefair.lombok' version "${pluginLombok}"
id 'com.github.johnrengelman.shadow' version "${pluginShadow}"
2024-06-08 15:33:03 +02:00
}
dependencies {
2024-06-09 00:21:01 +02:00
// -> Runtime <-
2024-06-08 15:33:03 +02:00
// Lombok
compileOnly 'org.projectlombok:lombok:' + project.dependencyLombok
annotationProcessor 'org.projectlombok:lombok:' + project.dependencyLombok
2024-06-09 00:21:01 +02:00
// JetBrains Annotations
2024-06-08 15:33:03 +02:00
compileOnly 'org.jetbrains:annotations:' + project.dependencyJetbrainsAnnotations
2024-06-09 00:21:01 +02:00
// -> Project <-
2024-06-08 15:33:03 +02:00
implementation project(":base")
2024-06-11 20:01:34 +02:00
implementation project(":slf4j-compat")
2024-06-11 23:08:03 +02:00
implementation project(":graphics")
implementation project(":graphics:vulkan")
2024-06-11 23:09:27 +02:00
implementation project(":graphics:opengl")
2024-06-08 15:33:03 +02:00
}
javadoc.options {
setMemberLevel(JavadocMemberLevel.PUBLIC)
setOverview("src/main/javadoc/overview.html")
2024-06-11 20:01:34 +02:00
setLocale("en_US")
2024-06-08 15:33:03 +02:00
setJFlags([
// Force Javadoc to use English translations
"-Duser.language=en_US"
])
}
jar {
manifest {
attributes(
'Main-Class': 'de.staropensource.sosengine.testapp.Main'
)
}
}
application {
mainClass.set("de.staropensource.sosengine.testapp.Main")
applicationDefaultJvmArgs = [
// Set log level to DIAGNOSTIC
"-Dsosengine.base.loggerLevel=diagnostic",
// Force writing to standard output
"-Dsosengine.base.loggerForceStandardOutput=true",
// Force Jansi to write escape sequences
"-Djansi.mode=force",
]
}