-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle.kts
352 lines (302 loc) · 11.3 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
import com.powersync.plugins.sonatype.setupGithubRepository
import de.undercouch.gradle.tasks.download.Download
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.internal.os.OperatingSystem
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.plugin.mpp.TestExecutable
import org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest
import org.jetbrains.kotlin.gradle.tasks.KotlinTest
import org.jetbrains.kotlin.konan.target.Family
plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.kotlinSerialization)
alias(libs.plugins.androidLibrary)
alias(libs.plugins.mavenPublishPlugin)
alias(libs.plugins.downloadPlugin)
alias(libs.plugins.kotlinter)
id("com.powersync.plugins.sonatype")
alias(libs.plugins.mokkery)
alias(libs.plugins.kotlin.atomicfu)
}
val binariesFolder = project.layout.buildDirectory.dir("binaries/desktop")
val downloadPowersyncDesktopBinaries by tasks.registering(Download::class) {
description = "Download PowerSync core extensions for JVM builds and releases"
val coreVersion =
libs.versions.powersync.core
.get()
val linux_aarch64 =
"https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v$coreVersion/libpowersync_aarch64.so"
val linux_x64 =
"https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v$coreVersion/libpowersync_x64.so"
val macos_aarch64 =
"https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v$coreVersion/libpowersync_aarch64.dylib"
val macos_x64 =
"https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v$coreVersion/libpowersync_x64.dylib"
val windows_x64 =
"https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v$coreVersion/powersync_x64.dll"
val includeAllPlatformsForJvmBuild =
project.findProperty("powersync.binaries.allPlatforms") == "true"
val os = OperatingSystem.current()
// The jar we're releasing for JVM clients needs to include the core extension. For local tests, it's enough to only
// download the extension for the OS running the build. For releases, we want to include them all.
// We're not compiling native code for JVM builds here (we're doing that for Android only), so we just have to
// fetch prebuilt binaries from the powersync-sqlite-core repository.
if (includeAllPlatformsForJvmBuild) {
src(listOf(linux_aarch64, linux_x64, macos_aarch64, macos_x64, windows_x64))
} else {
val (aarch64, x64) =
when {
os.isLinux -> linux_aarch64 to linux_x64
os.isMacOsX -> macos_aarch64 to macos_x64
os.isWindows -> null to windows_x64
else -> error("Unknown operating system: $os")
}
val arch = System.getProperty("os.arch")
src(
when (arch) {
"aarch64" -> listOfNotNull(aarch64)
"amd64", "x86_64" -> listOfNotNull(x64)
else -> error("Unsupported architecture: $arch")
},
)
}
dest(binariesFolder.map { it.dir("powersync") })
onlyIfModified(true)
}
val downloadPowersyncFramework by tasks.registering(Download::class) {
val coreVersion =
libs.versions.powersync.core
.get()
val framework =
"https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v$coreVersion/powersync-sqlite-core.xcframework.zip"
src(framework)
dest(binariesFolder.map { it.file("framework/powersync-sqlite-core.xcframework.zip") })
onlyIfModified(true)
}
val unzipPowersyncFramework by tasks.registering(Copy::class) {
dependsOn(downloadPowersyncFramework)
from(
zipTree(downloadPowersyncFramework.get().dest).matching {
include("powersync-sqlite-core.xcframework/**")
},
)
into(binariesFolder.map { it.dir("framework") })
}
val sqliteJDBCFolder =
project.layout.buildDirectory
.dir("jdbc")
.get()
val jniLibsFolder = layout.projectDirectory.dir("src/androidMain/jni")
val downloadJDBCJar by tasks.registering(Download::class) {
val version =
libs.versions.sqlite.jdbc
.get()
val jar =
"https://github.com/xerial/sqlite-jdbc/releases/download/$version/sqlite-jdbc-$version.jar"
src(jar)
dest(sqliteJDBCFolder.file("jdbc.jar"))
onlyIfModified(true)
}
val extractJDBCJNI by tasks.registering(Copy::class) {
dependsOn(downloadJDBCJar)
from(
zipTree(downloadJDBCJar.get().dest).matching {
include("org/sqlite/native/Linux-Android/**")
},
)
into(sqliteJDBCFolder.dir("jni"))
}
val moveJDBCJNIFiles by tasks.registering(Copy::class) {
dependsOn(extractJDBCJNI)
val abiMapping =
mapOf(
"aarch64" to "arm64-v8a",
"arm" to "armeabi-v7a",
"x86_64" to "x86_64",
"x86" to "x86",
)
abiMapping.forEach { (sourceABI, androidABI) ->
from(sqliteJDBCFolder.dir("jni/org/sqlite/native/Linux-Android/$sourceABI")) {
include("*.so")
eachFile {
path = "$androidABI/$name"
}
}
}
into(jniLibsFolder) // Move everything into the base jniLibs folder
}
kotlin {
androidTarget {
publishLibraryVariants("release", "debug")
@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
}
}
jvm {
@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
jvmTarget.set(JvmTarget.JVM_1_8)
// https://jakewharton.com/kotlins-jdk-release-compatibility-flag/
freeCompilerArgs.add("-Xjdk-release=8")
}
}
iosX64()
iosArm64()
iosSimulatorArm64()
targets.withType<KotlinNativeTarget> {
compilations.named("main") {
compileTaskProvider {
compilerOptions.freeCompilerArgs.add("-Xexport-kdoc")
}
}
if (konanTarget.family == Family.IOS && konanTarget.name.contains("simulator")) {
binaries.withType<TestExecutable>().configureEach {
linkTaskProvider.configure { dependsOn(unzipPowersyncFramework) }
linkerOpts("-framework", "powersync-sqlite-core")
val frameworkRoot =
binariesFolder
.map { it.dir("framework/powersync-sqlite-core.xcframework/ios-arm64_x86_64-simulator") }
.get()
.asFile.path
linkerOpts("-F", frameworkRoot)
linkerOpts("-rpath", frameworkRoot)
}
}
/*
If we ever need macOS support:
{
binaries.withType<TestExecutable>().configureEach {
linkTaskProvider.dependsOn(downloadPowersyncDesktopBinaries)
linkerOpts("-lpowersync")
linkerOpts("-L", binariesFolder.map { it.dir("powersync") }.get().asFile.path)
}
}
*/
}
explicitApi()
applyDefaultHierarchyTemplate()
sourceSets {
all {
languageSettings {
optIn("kotlinx.cinterop.ExperimentalForeignApi")
}
}
val commonIntegrationTest by creating {
dependsOn(commonTest.get())
}
val commonJava by creating {
dependsOn(commonMain.get())
dependencies {
implementation(libs.sqlite.jdbc)
}
}
commonMain.dependencies {
implementation(libs.uuid)
implementation(libs.kotlin.stdlib)
implementation(libs.ktor.client.core)
implementation(libs.ktor.client.contentnegotiation)
implementation(libs.ktor.serialization.json)
implementation(libs.kotlinx.io)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.kotlinx.datetime)
implementation(libs.stately.concurrency)
implementation(libs.configuration.annotations)
api(projects.persistence)
api(libs.kermit)
}
androidMain {
dependsOn(commonJava)
dependencies.implementation(libs.ktor.client.okhttp)
}
jvmMain {
dependsOn(commonJava)
dependencies {
implementation(libs.ktor.client.okhttp)
}
}
iosMain.dependencies {
implementation(libs.ktor.client.ios)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
implementation(libs.test.coroutines)
implementation(libs.test.turbine)
implementation(libs.kermit.test)
implementation(libs.ktor.client.mock)
implementation(libs.test.turbine)
}
// We're putting the native libraries into our JAR, so integration tests for the JVM can run as part of the unit
// tests.
jvmTest.get().dependsOn(commonIntegrationTest)
// We're linking the xcframework for the simulator tests, so they can use integration tests too
iosSimulatorArm64Test.orNull?.dependsOn(commonIntegrationTest)
}
}
android {
compileOptions {
targetCompatibility = JavaVersion.VERSION_17
}
buildFeatures {
buildConfig = true
}
buildTypes {
release {
buildConfigField("boolean", "DEBUG", "false")
}
debug {
buildConfigField("boolean", "DEBUG", "true")
}
}
namespace = "com.powersync"
compileSdk =
libs.versions.android.compileSdk
.get()
.toInt()
defaultConfig {
minSdk =
libs.versions.android.minSdk
.get()
.toInt()
consumerProguardFiles("proguard-rules.pro")
}
sourceSets {
getByName("main") {
jniLibs.srcDirs("src/androidMain/jni", "src/main/jni", "src/jniLibs")
}
}
ndkVersion = "27.1.12297006"
}
androidComponents.onVariants {
tasks.named("preBuild") {
dependsOn(moveJDBCJNIFiles)
}
}
tasks.named<ProcessResources>(kotlin.jvm().compilations["main"].processResourcesTaskName) {
from(downloadPowersyncDesktopBinaries)
}
// We want to build with recent JDKs, but need to make sure we support Java 8. https://jakewharton.com/build-on-latest-java-test-through-lowest-java/
val testWithJava8 by tasks.registering(KotlinJvmTest::class) {
javaLauncher =
javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(8)
}
description = "Run tests with Java 8"
group = LifecycleBasePlugin.VERIFICATION_GROUP
// Copy inputs from the normal test task
val testTask = tasks.getByName("jvmTest") as KotlinJvmTest
classpath = testTask.classpath
testClassesDirs = testTask.testClassesDirs
}
tasks.named("check").configure { dependsOn(testWithJava8) }
tasks.withType<KotlinTest> {
testLogging {
events("PASSED", "FAILED", "SKIPPED")
exceptionFormat = TestExceptionFormat.FULL
showStandardStreams = true
showStackTraces = true
}
}
setupGithubRepository()