/* * 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 . */ plugins { id("java") id "application" id("io.freefair.lombok") version("${pluginLombok}") id("io.github.goooler.shadow") version("${pluginShadow}") } dependencies { // -> Runtime <- // Lombok compileOnly("org.projectlombok:lombok:${dependencyLombok}") annotationProcessor("org.projectlombok:lombok:${dependencyLombok}") // JetBrains Annotations compileOnly("org.jetbrains:annotations:${dependencyJetbrainsAnnotations}") // -> Project <- implementation(project(":base")) implementation(project(":slf4j-compat")) implementation(project(":graphics")) implementation project(":graphics:vulkan") implementation project(":graphics:opengl") implementation("org.fusesource.jansi:jansi:${dependencyJansi}") // for some reason required or the build fails don"t ask me why } javadoc.options { setMemberLevel(JavadocMemberLevel.PUBLIC) setOverview("src/main/javadoc/overview.html") setLocale("en_US") 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", ] }