This repository was archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (56 loc) · 2.09 KB
/
Copy pathbuild.gradle
File metadata and controls
69 lines (56 loc) · 2.09 KB
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
buildscript{
ext {
// Constants
ankKotlinVersion = '1.3.11'
detekt_version = '1.0.0-RC12'
dokka_version = '0.9.17'
gradleVersionsPluginVersion = '0.21.0'
jUnitVersion = '4.12'
jUnitVintageVersion = '5.4.0'
javaVersion = JavaVersion.VERSION_1_7
kotlinTestVersion = '3.3.1'
kotlinVersion = '1.3.21'
}
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
maven { url "https://dl.bintray.com/jetbrains/markdown/" }
maven { url "https://dl.bintray.com/arrow-kt/arrow-kt/" }
}
dependencies {
classpath "com.github.ben-manes:gradle-versions-plugin:$gradleVersionsPluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'org.ajoberstar:gradle-git-publish:2.0.0'
classpath "net.rdrei.android.buildtimetracker:gradle-plugin:0.11.1"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_version"
classpath "me.champeau.gradle:jmh-gradle-plugin:0.4.7"
classpath "gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.0"
}
}
group 'higherkindness.mu'
version '0.1-SNAPSHOT'
subprojects { project ->
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
maven { url = uri("https://oss.jfrog.org/artifactory/oss-snapshot-local/") }
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-dev") }
maven { url = uri("https://dl.bintray.com/arrow-kt/arrow-kt") }
}
apply plugin: 'kotlin'
compileKotlin.kotlinOptions.freeCompilerArgs += ["-Xskip-runtime-version-check"]
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
configurations {
buildableProjects
}
dependencies {
buildableProjects(subprojects)
}