2024-06-28 01:08:45 +02:00
|
|
|
/*
|
|
|
|
* 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-07-11 04:03:08 +02:00
|
|
|
// Plugins
|
2024-06-11 20:01:34 +02:00
|
|
|
plugins {
|
2024-07-08 12:39:04 +02:00
|
|
|
id("java")
|
|
|
|
id("io.freefair.lombok") version("${pluginLombok}")
|
|
|
|
id("maven-publish")
|
2024-06-11 20:01:34 +02:00
|
|
|
}
|
|
|
|
|
2024-07-11 04:03:08 +02:00
|
|
|
// Dependencies
|
2024-06-11 20:01:34 +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 20:01:34 +02:00
|
|
|
|
|
|
|
// JetBrains Annotations
|
2024-07-08 12:39:04 +02:00
|
|
|
compileOnly("org.jetbrains:annotations:${dependencyJetbrainsAnnotations}")
|
2024-06-11 20:01:34 +02:00
|
|
|
|
|
|
|
// SLF4J
|
2024-07-08 12:39:04 +02:00
|
|
|
implementation("org.slf4j:slf4j-api:${dependencySlf4j}")
|
2024-06-11 20:01:34 +02:00
|
|
|
|
|
|
|
// -> Project <-
|
2024-07-08 12:39:04 +02:00
|
|
|
implementation(project(":base"))
|
2024-06-11 20:01:34 +02:00
|
|
|
}
|
|
|
|
|
2024-07-11 04:03:08 +02:00
|
|
|
// Fix delombok task
|
|
|
|
delombok.doFirst {
|
|
|
|
File target = file("${project.projectDir}/src/main/module-info.java")
|
|
|
|
File source = file("${project.projectDir}/src/main/java/module-info.java")
|
|
|
|
|
|
|
|
target.delete()
|
|
|
|
source.renameTo(target)
|
|
|
|
}
|
|
|
|
delombok.doLast {
|
|
|
|
File target = file("${project.projectDir}/src/main/java/module-info.java")
|
|
|
|
File source = file("${project.projectDir}/src/main/module-info.java")
|
|
|
|
|
|
|
|
target.delete()
|
|
|
|
source.renameTo(target)
|
2024-06-11 20:01:34 +02:00
|
|
|
}
|
|
|
|
|
2024-07-11 04:03:08 +02:00
|
|
|
// Javadoc configuration
|
|
|
|
javadoc {
|
|
|
|
outputs.upToDateWhen { false } // Force task execution
|
|
|
|
dependsOn(delombok) // Make sure the source is delomboked first
|
|
|
|
|
|
|
|
javadoc {
|
|
|
|
setClasspath(files(project.sourceSets.main.compileClasspath)) // Include dependencies
|
|
|
|
|
|
|
|
options {
|
|
|
|
if (new File(projectDir, "src/main/javadoc/theme.css").exists())
|
|
|
|
stylesheetFile = new File(projectDir, "src/main/javadoc/theme.css") // Theming is cool :3
|
|
|
|
setMemberLevel(JavadocMemberLevel.PUBLIC) // Only display public stuff
|
|
|
|
setOverview("src/main/javadoc/overview.html") // We want a custom overview page to greet the visitor
|
|
|
|
setLocale("en_US") // 你好
|
|
|
|
|
|
|
|
setJFlags([
|
|
|
|
"-Duser.language=en_US" // See above
|
|
|
|
])
|
|
|
|
}
|
2024-06-11 20:01:34 +02:00
|
|
|
}
|
|
|
|
}
|
2024-06-16 13:36:06 +02:00
|
|
|
|
2024-07-18 01:25:23 +02:00
|
|
|
// Include javadoc and source jar during publishing
|
|
|
|
java {
|
|
|
|
withJavadocJar()
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
2024-07-11 04:03:08 +02:00
|
|
|
// Build publishing configuration
|
|
|
|
// Note: You can safely ignore any errors or warnings thrown by your IDE here
|
2024-06-16 13:36:06 +02:00
|
|
|
publishing {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = "staropensource"
|
2024-08-01 03:00:56 +02:00
|
|
|
url = uri("https://mvn.staropensource.de/sosengine")
|
2024-06-16 13:36:06 +02:00
|
|
|
credentials(org.gradle.api.credentials.PasswordCredentials)
|
|
|
|
authentication {
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
|
|
basic (BasicAuthentication)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
publications {
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
|
|
maven (MavenPublication) {
|
|
|
|
groupId = group
|
2024-08-01 03:00:56 +02:00
|
|
|
artifactId = project.getName() as Publication
|
2024-06-16 13:36:06 +02:00
|
|
|
version = version
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
|
|
from components.java
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|