forked from Foso/Ktorfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
40 lines (31 loc) · 1.05 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
plugins {
kotlin("multiplatform") apply false
id("com.vanniktech.maven.publish") version "0.21.0" apply false
}
buildscript {
repositories {
google()
gradlePluginPortal()
mavenLocal()
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
}
}
dependencies {
classpath("com.vanniktech:gradle-maven-publish-plugin:0.22.0")
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.7.10")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.7.21")
classpath("com.android.tools.build:gradle:7.2.2")
classpath ("app.cash.licensee:licensee-gradle-plugin:1.5.0")
}
}
subprojects {
repositories {
google()
mavenLocal()
mavenCentral()
}
}
// ./gradlew clean :sandbox:compileKotlinJvm --no-daemon -Dorg.gradle.debug=true -Dkotlin.compiler.execution.strategy="in-process" -Dkotlin.daemon.jvm.options="-Xdebug,-Xrunjdwp:transport=dt_socket,address=5005,server=y,suspend=n"