2022-11-06 21:31:24 +08:00
|
|
|
import org.ajoberstar.grgit.Status
|
|
|
|
|
2022-11-06 20:07:11 +08:00
|
|
|
import java.nio.charset.Charset
|
|
|
|
import java.nio.charset.StandardCharsets
|
|
|
|
|
2021-10-07 20:50:59 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2021-11-27 21:07:40 +08:00
|
|
|
id 'java-library'
|
2021-11-26 14:09:40 +08:00
|
|
|
id 'application'
|
2022-11-07 12:54:01 +08:00
|
|
|
id 'maven-publish'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
2022-11-06 20:07:11 +08:00
|
|
|
id 'com.github.gmazzo.buildconfig' version '3.1.0'
|
2022-11-06 21:31:24 +08:00
|
|
|
id 'org.ajoberstar.grgit' version '5.0.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
final boolean proj_git = grgit!=null
|
2022-11-09 01:41:01 +08:00
|
|
|
final String proj_store = MORNY_CODE_STORE
|
2022-11-06 21:31:24 +08:00
|
|
|
final String proj_commit = proj_git ? grgit.head().id : null
|
2022-11-09 01:41:01 +08:00
|
|
|
final String proj_commit_path = MORNY_COMMIT_PATH
|
2022-11-06 21:31:24 +08:00
|
|
|
final boolean proj_clean = isCleanBuild()
|
|
|
|
if (!proj_git)
|
|
|
|
print "[MornyBuild] git repository not available for current working space! git version tag will be disabled."
|
|
|
|
else if (isCleanBuild()) {
|
|
|
|
print "git: clean build at ${grgit.head().id}"
|
|
|
|
} else {
|
|
|
|
final Status status = grgit.status()
|
2022-11-07 12:54:01 +08:00
|
|
|
print "git: non-clean-build"
|
2022-11-06 21:31:24 +08:00
|
|
|
if (!status.unstaged.allChanges.empty) {
|
2022-11-07 12:54:01 +08:00
|
|
|
print "\ngit: unstaged changes"
|
2022-11-06 21:31:24 +08:00
|
|
|
listChanges(status.unstaged)
|
|
|
|
}
|
|
|
|
if (!status.staged.allChanges.empty) {
|
2022-11-07 12:54:01 +08:00
|
|
|
print "\ngit: staged changes"
|
2022-11-06 21:31:24 +08:00
|
|
|
listChanges(status.staged)
|
|
|
|
}
|
2021-10-07 20:50:59 +08:00
|
|
|
}
|
|
|
|
|
2022-11-06 20:07:11 +08:00
|
|
|
final String proj_group = 'cc.sukazyo'
|
|
|
|
final String proj_package = "${proj_group}.cono.morny"
|
|
|
|
final String proj_archive_name = MORNY_ARCHIVE_NAME
|
2022-11-07 12:54:01 +08:00
|
|
|
final String proj_application_main = "${proj_package}.ServerMain"
|
2022-11-06 20:07:11 +08:00
|
|
|
|
|
|
|
final String proj_version_base = VERSION
|
|
|
|
final String proj_version_delta = VERSION_DELTA
|
2022-11-08 22:37:46 +08:00
|
|
|
final boolean proj_version_use_delta = Boolean.parseBoolean(USE_DELTA)
|
2022-11-06 21:31:24 +08:00
|
|
|
String proj_version = proj_version_base
|
|
|
|
if (proj_version_use_delta) proj_version += "-δ${proj_version_delta}"
|
|
|
|
if (proj_git) proj_version += "+git.${proj_commit.substring(0, 8)}" + (proj_clean?"":".δ")
|
2022-11-06 20:07:11 +08:00
|
|
|
final String proj_version_codename = CODENAME
|
2022-11-06 21:43:15 +08:00
|
|
|
final long proj_code_time = proj_clean ? grgit.head().dateTime.toInstant().toEpochMilli() : System.currentTimeMillis()
|
2022-11-06 20:07:11 +08:00
|
|
|
|
|
|
|
final JavaVersion proj_java = JavaVersion.VERSION_17
|
|
|
|
final Charset proj_file_encoding = StandardCharsets.UTF_8
|
|
|
|
|
2022-11-07 12:54:01 +08:00
|
|
|
String publish_local_url = null
|
|
|
|
String publish_remote_url = null
|
|
|
|
String publish_remote_username = null
|
|
|
|
String publish_remote_password = null
|
|
|
|
if (project.hasProperty("publishLocalArchiveRepoUrl")) publish_local_url = publishLocalArchiveRepoUrl
|
|
|
|
if (project.hasProperty("publishMvnRepoUrl")) {
|
|
|
|
publish_remote_url = publishMvnRepoUrl
|
|
|
|
publish_remote_username = publishMvnRepoUsername
|
|
|
|
publish_remote_password = publishMvnRepoPassword
|
|
|
|
}
|
|
|
|
|
2022-11-06 20:07:11 +08:00
|
|
|
group proj_group
|
|
|
|
version proj_version
|
2022-11-07 12:54:01 +08:00
|
|
|
setArchivesBaseName proj_archive_name
|
2021-10-07 20:50:59 +08:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-09-19 23:54:02 +08:00
|
|
|
maven { name '-ws'; url 'https://mvn.sukazyo.cc/releases' }
|
2021-10-07 20:50:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-06 20:43:56 +08:00
|
|
|
|
2021-12-10 01:08:18 +08:00
|
|
|
compileOnlyApi "com.github.spotbugs:spotbugs-annotations:${libSpotbugsVersion}"
|
2021-11-27 21:07:40 +08:00
|
|
|
|
2021-12-11 00:10:22 +08:00
|
|
|
api "cc.sukazyo:messiva:${libMessivaVersion}"
|
|
|
|
|
2021-12-10 01:08:18 +08:00
|
|
|
implementation "com.github.pengrad:java-telegram-bot-api:${libJavaTelegramBotApiVersion}"
|
2021-11-06 20:43:56 +08:00
|
|
|
|
2021-12-10 01:08:18 +08:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${libJunitVersion}"
|
2022-10-02 02:18:26 +08:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-params:${libJunitVersion}"
|
2021-12-10 01:08:18 +08:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${libJunitVersion}"
|
2021-11-06 20:43:56 +08:00
|
|
|
|
2021-10-07 20:50:59 +08:00
|
|
|
}
|
|
|
|
|
2022-11-07 12:54:01 +08:00
|
|
|
application {
|
|
|
|
mainClass = proj_application_main
|
|
|
|
}
|
|
|
|
|
2021-10-07 20:50:59 +08:00
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
2021-11-09 17:33:56 +08:00
|
|
|
|
2021-11-26 14:09:40 +08:00
|
|
|
java {
|
2021-12-05 20:15:51 +08:00
|
|
|
|
2022-11-06 20:07:11 +08:00
|
|
|
sourceCompatibility proj_java
|
|
|
|
targetCompatibility proj_java
|
2021-12-05 20:15:51 +08:00
|
|
|
|
2021-11-26 14:09:40 +08:00
|
|
|
withSourcesJar()
|
2021-12-05 20:15:51 +08:00
|
|
|
|
2021-11-26 14:09:40 +08:00
|
|
|
}
|
|
|
|
|
2021-11-09 17:33:56 +08:00
|
|
|
tasks.withType(JavaCompile) {
|
2022-11-06 20:07:11 +08:00
|
|
|
options.encoding = proj_file_encoding.name()
|
2021-11-09 17:33:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(Javadoc) {
|
2022-11-06 20:07:11 +08:00
|
|
|
options.encoding = proj_file_encoding.name()
|
|
|
|
options.docEncoding = proj_file_encoding.name()
|
|
|
|
options.charSet = proj_file_encoding.name()
|
2021-11-09 17:33:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
2022-11-06 20:07:11 +08:00
|
|
|
buildConfig {
|
|
|
|
|
|
|
|
packageName(proj_package)
|
|
|
|
|
2022-11-06 21:31:24 +08:00
|
|
|
buildConfigField('String', 'VERSION', "\"${proj_version}\"")
|
2022-11-09 01:41:01 +08:00
|
|
|
buildConfigField('String', 'VERSION_BASE', "\"${proj_version_base}\"")
|
2022-11-08 22:37:46 +08:00
|
|
|
buildConfigField('String', 'VERSION_DELTA', proj_version_use_delta ? "\"${proj_version_delta}\"" : "null")
|
2022-11-06 21:31:24 +08:00
|
|
|
buildConfigField('String', 'CODENAME', "\"${proj_version_codename}\"")
|
2022-11-06 21:43:15 +08:00
|
|
|
buildConfigField('long', 'CODE_TIMESTAMP', "${proj_code_time}L")
|
2022-11-06 21:31:24 +08:00
|
|
|
buildConfigField('String', 'COMMIT', proj_git ? "\"${proj_commit}\"" : "null")
|
|
|
|
buildConfigField('boolean', 'CLEAN_BUILD', "${proj_clean}")
|
2022-11-09 01:41:01 +08:00
|
|
|
buildConfigField('String', 'CODE_STORE', proj_store==""?"null":"\"${proj_store}\"")
|
|
|
|
buildConfigField('String', 'COMMIT_PATH', proj_commit_path==""?"null":"\"${proj_commit_path}\"")
|
2022-11-06 20:07:11 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-11-26 14:09:40 +08:00
|
|
|
shadowJar {
|
2022-11-07 12:54:01 +08:00
|
|
|
archiveClassifier.set "fat"
|
2021-11-26 14:09:40 +08:00
|
|
|
}
|
|
|
|
|
2022-11-06 21:31:24 +08:00
|
|
|
@SuppressWarnings("all")
|
|
|
|
boolean isCleanBuild () {
|
|
|
|
if (grgit == null) return false
|
|
|
|
Set<String> changes = grgit.status().unstaged.allChanges + grgit.status().staged.allChanges
|
|
|
|
for (String file in changes) {
|
|
|
|
if (file.startsWith("src/")) return false
|
|
|
|
if (file == "build.gradle") return false
|
|
|
|
if (file == "gradle.properties") return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
void listChanges (Status.Changes listing) {
|
|
|
|
for (String file in listing.added)
|
2022-11-07 12:54:01 +08:00
|
|
|
print "\n add: ${file}"
|
2022-11-06 21:31:24 +08:00
|
|
|
for (String file in listing.modified)
|
2022-11-07 12:54:01 +08:00
|
|
|
print "\n mod: ${file}"
|
2022-11-06 21:31:24 +08:00
|
|
|
for (String file in listing.removed)
|
2022-11-07 12:54:01 +08:00
|
|
|
print "\n del: ${file}"
|
2022-11-06 21:31:24 +08:00
|
|
|
}
|
|
|
|
|
2021-11-26 14:09:40 +08:00
|
|
|
publishing {
|
|
|
|
repositories{
|
2022-11-07 12:54:01 +08:00
|
|
|
if (publish_local_url != null) maven {
|
|
|
|
name 'archives'
|
|
|
|
url publish_local_url
|
2021-11-26 14:09:40 +08:00
|
|
|
}
|
2022-11-07 12:54:01 +08:00
|
|
|
if (publish_remote_url != null) maven {
|
2021-11-26 14:09:40 +08:00
|
|
|
name '-ws-'
|
2022-11-07 12:54:01 +08:00
|
|
|
url publish_remote_url
|
2021-11-26 14:09:40 +08:00
|
|
|
credentials {
|
2022-11-07 12:54:01 +08:00
|
|
|
username publish_remote_username
|
|
|
|
password publish_remote_password
|
2021-11-26 14:09:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
publications {
|
|
|
|
main (MavenPublication) {
|
|
|
|
from components.java
|
2022-11-07 12:54:01 +08:00
|
|
|
groupId = proj_group
|
|
|
|
artifactId = proj_archive_name
|
|
|
|
version = proj_version
|
2021-11-26 14:09:40 +08:00
|
|
|
}
|
|
|
|
}
|
2021-11-09 17:33:56 +08:00
|
|
|
}
|