-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle.kts
276 lines (242 loc) · 8.44 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
import org.jetbrains.kotlin.gradle.plugin.mpp.apple.XCFramework
import org.jetbrains.kotlin.gradle.targets.js.ir.JsIrBinary
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24")
}
}
plugins {
kotlin("multiplatform") version "1.9.24"
kotlin("native.cocoapods") version "1.9.24"
kotlin("plugin.serialization") version "1.9.24"
id("maven-publish")
id("dev.petuska.npm.publish") version "3.4.2"
id("com.diffplug.spotless") version "6.25.0"
id("io.gitlab.arturbosch.detekt") version("1.23.3")
id("com.google.devtools.ksp") version "1.9.24-1.0.20" // needs to be in-sync with Kotlin version. Version before the dash is the compatible Kotlin version.
}
allprojects {
apply(plugin = "com.diffplug.spotless")
spotless {
kotlin {
target("src/**/*.kt")
targetExclude(".idea/")
ktlint("1.2.1")
.editorConfigOverride(
mapOf(
"max_line_length" to "off",
"filename" to "off",
"pascal_case_package" to "disabled",
"ktlint_standard_enum-entry-name-case" to "disabled",
"ktlint_standard_trailing-comma-on-declaration-site" to "disabled",
"ktlint_standard_no-semi" to "disabled",
"ktlint_standard_backing-property-naming" to "disabled",
"ktlint_standard_filename" to "disabled",
"ktlint_standard_function-naming" to "disabled",
)
)
}
}
repositories {
google()
mavenCentral()
}
}
group = "exchange.dydx.abacus"
version = "1.13.17"
repositories {
google()
mavenCentral()
}
kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xjdk-release=1.8"
kotlinOptions.moduleName = "abacus"
}
withJava()
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
js(IR) {
moduleName = "abacusjs"
browser()
generateTypeScriptDefinitions()
binaries.library()
binaries.withType<JsIrBinary>().all {
linkTask.configure {
kotlinOptions {
sourceMap = true
sourceMapEmbedSources = "always"
}
}
}
}
val xcf = XCFramework()
val iosTargets = listOf(
iosArm64(),
iosSimulatorArm64(),
)
iosTargets.forEach {
it.binaries.framework {
baseName = "abacus"
xcf.add(this)
}
}
sourceSets {
val ktorVersion = "2.1.1"
all {
// Since commonMain needs the opt-in, all dependent sets also need it.
languageSettings.apply {
optIn("kotlin.js.ExperimentalJsExport")
}
}
val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
implementation("io.ktor:ktor-http:$ktorVersion")
implementation("com.ionspin.kotlin:bignum:0.3.8")
implementation("tz.co.asoft:kollections-interoperable:2.0.16")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.3")
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
implementation("org.jetbrains.kotlin:kotlin-test-common")
implementation("org.jetbrains.kotlin:kotlin-test-annotations-common")
}
}
val jsMain by getting
val jvmMain by getting
val jvmTest by getting
val iosMain by creating {
dependsOn(commonMain)
}
val iosArm64Main by getting {
dependsOn(iosMain)
}
val iosSimulatorArm64Main by getting {
dependsOn(iosMain)
}
}
dependencies {
// KSP will eventually have better multiplatform support and we'll be able to simply have
// `ksp libs.kotlinInject.compiler` in the dependencies block of each source set
// https://github.com/google/ksp/pull/1021
add("kspJvm", "me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.3")
add("kspJs", "me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.3")
add("kspIosArm64", "me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.3")
add("kspIosSimulatorArm64", "me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.3")
}
tasks.wrapper {
gradleVersion = "7.5.1"
distributionType = Wrapper.DistributionType.ALL
}
cocoapods {
// Required properties
// Specify the required Pod version here. Otherwise, the Gradle project version is used.
// version = "1.0"
summary = "Shared front-end and mobile logic written in Kotlin"
homepage = "https://github.com/dydxprotocol/v4-abacus"
source = "{ :git => 'git@github.com/dydxprotocol/v4-abacus.git' }"
// Optional properties
// Configure the Pod name here instead of changing the Gradle project name
//name = "MyCocoaPod"
framework {
// Required properties
// Framework name configuration. Use this property instead of deprecated 'frameworkName'
baseName = "Abacus"
// Optional properties
// Dynamic framework support
isStatic = false
// Dependency export
//export(project(":anotherKMMModule"))
//transitiveExport = false // This is default.
// Bitcode embedding
//embedBitcode(BITCODE)
}
// Maps custom Xcode configuration to NativeBuildType
//xcodeConfigurationToNativeBuildType["CUSTOM_DEBUG"] = NativeBuildType.DEBUG
//xcodeConfigurationToNativeBuildType["CUSTOM_RELEASE"] = NativeBuildType.RELEASE
}
}
detekt {
toolVersion = "1.23.3"
config.setFrom(file("detekt.yml"))
baseline = file("detekt-baseline.xml")
buildUponDefaultConfig = true
}
npmPublish {
organization.set("dydxprotocol")
readme.set(rootDir.resolve("README.md"))
packages {
named("js") {
packageJson {
license.set("BSL-1.1")
}
}
}
registries {
register("npmjs") {
uri.set(uri("https://registry.npmjs.org")) //
val npm_token = System.getenv("npm_token")
authToken.set(npm_token)
}
}
}
//
// JVM publishing
//
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/dydxprotocol/v4-abacus")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}
/**
* These tasks are meant for continuous development with from the v4-web repo.
* Instead of going through packJsPackage and npm installation, we shortcut by just
* copying our JS files directly into v4-web/node_modules.
*
* This reduces iteration time quite a bit, while being a bit riskier since manipulating
* node_modules directly is not recommended.
*
* Run via ./gradlew v4WebHotSwapTrigger --continuous
*/
tasks.register<Copy>("v4WebHotSwapCopy") {
dependsOn("jsBrowserDevelopmentLibraryDistribution")
from("build/dist/js/developmentLibrary")
into("../v4-web/node_modules/@dydxprotocol/v4-abacus/")
include("**/*.js", "**/*.map", "**/*.ts")
}
tasks.register<Exec>("v4WebHotSwapTrigger") {
group = "abacus"
dependsOn("v4WebHotSwapCopy")
commandLine = listOf("./trigger_v4web_reload.sh")
}
tasks.register<Exec>("updateAbacusPodspec") {
group = "abacus"
// replace the line "if !Dir.exist?('build/cocoapods/framework/Abacus.framework') || Dir.empty?('build/cocoapods/framework/Abacus.framework')" with "if false"
commandLine = listOf(
"sed",
"-i",
"",
"s/if !Dir.exist?('build\\/cocoapods\\/framework\\/Abacus.framework') || Dir.empty?('build\\/cocoapods\\/framework\\/Abacus.framework')/if false/",
"v4_abacus.podspec"
)
}
tasks.get("podspec").finalizedBy("updateAbacusPodspec")