Engine/graphics/build.gradle

67 lines
2.1 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-11 23:08:03 +02:00
plugins {
2024-07-08 12:39:04 +02:00
id("java")
id("io.freefair.lombok") version("${pluginLombok}")
2024-06-11 23:08:03 +02:00
}
dependencies {
// -> Runtime <-
// Lombok
2024-07-08 12:39:04 +02:00
compileOnly("org.projectlombok:lombok:${dependencyLombok}")
annotationProcessor("org.projectlombok:lombok:${dependencyLombok}")
2024-06-11 23:08:03 +02:00
// JetBrains Annotations
2024-07-08 12:39:04 +02:00
compileOnly("org.jetbrains:annotations:${dependencyJetbrainsAnnotations}")
2024-06-11 23:08:03 +02:00
// -> Testing <-
// Jetbrains Annotations
2024-07-08 12:39:04 +02:00
testCompileOnly("org.jetbrains:annotations:${dependencyJetbrainsAnnotations}")
2024-06-11 23:08:03 +02:00
// JUnit
2024-07-08 12:39:04 +02:00
testImplementation(platform("org.junit:junit-bom:${dependencyJunit}"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2024-06-11 23:08:03 +02:00
// jOOR
2024-07-08 12:39:04 +02:00
testImplementation("org.jooq:joor:${dependencyJoor}")
2024-06-11 23:08:03 +02:00
// -> Project <-
2024-07-08 12:39:04 +02:00
implementation(project(":base"))
implementation("org.fusesource.jansi:jansi:${dependencyJansi}") // for some reason required or the build fails don"t ask me why
2024-06-11 23:08:03 +02:00
}
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"
])
}
test {
useJUnitPlatform()
testLogging {
2024-07-08 12:39:04 +02:00
events("passed", "skipped", "failed")
2024-06-11 23:08:03 +02:00
}
}