mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-08-27 22:34:51 +00:00
desktop: build nanohttpd from a submodule (#7396)
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
plugins {
|
||||
`java-library`
|
||||
}
|
||||
|
||||
// Built from the upstream submodule pinned at efb2ebf85a2b06f7c508aba9eaad5377e3a01e81, because
|
||||
// upstream never released the org.nanohttpd packages and JitPack no longer serves or builds that
|
||||
// commit. Only the core and websocket modules are used, the samples are not.
|
||||
group = "org.nanohttpd"
|
||||
version = "efb2ebf"
|
||||
|
||||
val upstream = layout.projectDirectory.dir("upstream")
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
java {
|
||||
setSrcDirs(listOf(upstream.dir("core/src/main/java"), upstream.dir("websocket/src/main/java")))
|
||||
exclude("org/nanohttpd/samples/**")
|
||||
}
|
||||
resources.setSrcDirs(listOf(upstream.dir("core/src/main/resources")))
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
val jvmVersion = JavaVersion.toVersion(providers.gradleProperty("kotlin.jvm.target").get())
|
||||
sourceCompatibility = jvmVersion
|
||||
targetCompatibility = jvmVersion
|
||||
}
|
||||
|
||||
// Without this the jar records the build machine's timestamps, file order and file modes,
|
||||
// which makes the desktop packages unreproducible
|
||||
tasks.jar {
|
||||
// Checked here and not during configuration, so that Android builds, which don't use nanohttpd,
|
||||
// work without the submodule
|
||||
doFirst {
|
||||
if (!upstream.file("core/src/main/java").asFile.isDirectory) {
|
||||
throw GradleException("nanohttpd sources are missing, run: git submodule update --init --recursive")
|
||||
}
|
||||
}
|
||||
isPreserveFileTimestamps = false
|
||||
isReproducibleFileOrder = true
|
||||
filePermissions { unix("644") }
|
||||
dirPermissions { unix("755") }
|
||||
}
|
||||
+1
Submodule apps/multiplatform/external/nanohttpd/upstream added at efb2ebf85a
Reference in New Issue
Block a user