forked from arunkumar9t2/scabbard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
144 lines (130 loc) · 4.28 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
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
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile
buildscript {
apply from: "constants.gradle"
repositories {
google()
mavenCentral()
gradlePluginPortal()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${versions.agp}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "dev.arunkumar:scabbard-gradle-plugin:${publishVersion}"
classpath "com.google.dagger:hilt-android-gradle-plugin:${versions.hilt}"
classpath "com.diffplug.spotless:spotless-plugin-gradle:${versions.spotless}"
classpath "com.squareup.anvil:gradle-plugin:${versions.anvil}"
classpath "io.github.gradle-nexus:publish-plugin:${versions.gradleNexus}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
}
apply from: "gradle/local-properties.gradle"
apply from: "docker/resolve-dependencies.gradle"
apply from: "gradle/publish-root.gradle"
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
group groupId
version publishVersion
plugins.withType(com.android.build.gradle.BasePlugin).configureEach { plugin ->
//noinspection GrDeprecatedAPIUsage
plugin.extension.compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
tasks.withType(JavaCompile).configureEach { task ->
task.sourceCompatibility = JavaVersion.VERSION_1_8
task.targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType(KotlinJvmCompile).configureEach { task ->
task.kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs += ["-XXLanguage:+InlineClasses"]
}
}
apply plugin: "com.diffplug.spotless"
spotless {
kotlin {
target "**/src/**/*.kt", "**/src/**/*.kt"
targetExclude("$buildDir/**/*.kt")
targetExclude("bin/**/*.kt")
ktlint(versions.ktlint).userData([
"indent_size" : "2",
"continuation_indent_size": "2",
"disabled_rules" : "no-wildcard-imports"
])
}
}
}
def isWin = System.getProperty("os.name").toLowerCase().contains("win")
def samplePath = "samples:android-kotlin"
def sampleProject = project(samplePath)
//TODO Investigate migrating to GradleBuild. ATM has issues disabling daemon.
tasks.register("runScabbardProcessor" /*, GradleBuild*/) {
group = "development"
doLast {
def isDebug = project.hasProperty("debug")
if (isDebug) {
delete fileTree(sampleProject.buildDir).matching {
include "**/*.dot"
include "**/*.png"
include "**/*.svg"
}
}
exec {
def shell = isWin ? "cmd" : "sh"
def commandPrefix = isWin ? "" : "./"
def shellArg = isWin ? "/c" : "-c"
def gradleDebug = "-Dorg.gradle.debug=$isDebug"
def daemon = isDebug ? "--no-daemon" : ""
def command = "${commandPrefix}gradlew $daemon $gradleDebug --no-build-cache ${samplePath}:kaptDebugKotlin"
workingDir(projectDir)
commandLine shell, shellArg, command
}
}
}
tasks.register("serveDocs") {
group = "documentation"
description = "Serve documentation website and open browser"
doLast {
def url = "http://127.0.0.1:8000/"
if (isWin) {
exec { commandLine "cmd", "/c", "start $url" }
} else {
exec { commandLine "open", url }
}
exec { commandLine("mkdocs", "serve") }
}
}
tasks.register("publishSampleImages") {
group = "documentation"
description = "Publishes sample images to website"
doLast {
copy {
from "${sampleProject.buildDir}/tmp/kapt3/classes/debug/scabbard"
include "*.svg"
exclude "full_*.svg"
into "docs/images"
}
}
dependsOn sampleProject.tasks.named("kaptDebugKotlin")
}
// Common publish task to publish all artifacts
tasks.register("publishAllArtifacts") {
group = "publishing"
description = "Publishes all artifiacts"
// Docs
dependsOn tasks.named("publishSampleImages")
// Idea
dependsOn project("scabbard-idea-plugin").tasks.named("publishPlugin")
// Gradle plugin
dependsOn gradle.includedBuild("scabbard-gradle-plugin").task(":publishPlugins")
// Scabbard and dot-dsl
def publishTask = "publishReleasePublicationToSonatypeRepository"
dependsOn project("dot-dsl").tasks.named(publishTask)
dependsOn project("scabbard-processor").tasks.named(publishTask)
}