-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
36 lines (31 loc) · 958 Bytes
/
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
import com.chrynan.chords.buildSrc.LibraryConstants
group LibraryConstants.group
version LibraryConstants.versionName
buildscript {
repositories {
mavenCentral()
google()
jcenter()
maven { url = "https://repo.repsy.io/mvn/chrynan/public" }
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.0-alpha15"
classpath "digital.wup:android-maven-publish:3.6.2"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.4.30"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0"
classpath "org.jetbrains.kotlin:kotlin-serialization:1.5.0"
}
}
apply plugin: "org.jetbrains.dokka"
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url = "https://repo.repsy.io/mvn/chrynan/public" }
}
}
// Documentation
tasks.dokkaGfmMultiModule.configure {
outputDirectory.set(file("${projectDir.path}/docs"))
}