forked from Foso/Cabret-Log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (33 loc) · 1.11 KB
/
build.gradle
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
buildscript {
ext {
kotlin_version = '1.5.10'
}
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.2"
classpath "de.jensklingenberg.cabret:cabret-gradle:1.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.32'
}
}
plugins {
id 'org.jetbrains.kotlin.multiplatform' version '1.5.10' apply false
id "maven"
}
allprojects {
repositories {
google()
mavenLocal()
mavenCentral()
maven { url "https://maven.google.com" }
maven { url "https://plugins.gradle.org/m2/" }
}
}
//./gradlew :example:clean :example:build --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"