-
Notifications
You must be signed in to change notification settings - Fork 35
/
build.gradle
127 lines (116 loc) · 3.77 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
/*
* Copyright 2022 Arunkumar
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
dependencies {
classpath "dev.arunkumar:scabbard-gradle-plugin:${publishVersion}"
}
}
plugins {
id "build-common"
id "publish-common"
}
apply from: "gradle/local-properties.gradle"
allprojects {
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
}
pluginManager.withPlugin("kotlin-kapt") {
kapt {
arguments {
// TODO(arun) Ensure scabbard does not rely on @Component subclassing and remove this.
// arg("dagger.generatedClassExtendsComponent", "ENABLED")
}
}
}
}
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)
}