forked from wordpress-mobile/WordPress-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
179 lines (154 loc) · 5.56 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import com.automattic.android.measure.reporters.InternalA8cCiReporter
import com.automattic.android.measure.reporters.SlowSlowTasksMetricsReporter
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
alias(libs.plugins.detekt)
alias(libs.plugins.automattic.measure.builds)
alias(libs.plugins.kotlinx.kover)
alias(libs.plugins.dependency.analysis)
alias(libs.plugins.violation.comments).apply(false)
alias(libs.plugins.androidx.navigation.safeargs).apply(false)
alias(libs.plugins.android.application).apply(false)
alias(libs.plugins.android.library).apply(false)
alias(libs.plugins.google.services).apply(false)
alias(libs.plugins.kotlin.allopen).apply(false)
alias(libs.plugins.kotlin.android).apply(false)
alias(libs.plugins.kotlin.jvm).apply(false)
alias(libs.plugins.kotlin.parcelize).apply(false)
alias(libs.plugins.kotlin.serialization).apply(false)
alias(libs.plugins.ksp).apply(false)
alias(libs.plugins.kapt).apply(false)
}
ext {
minSdkVersion = 26
compileSdkVersion = 34
targetSdkVersion = 34
}
measureBuilds {
enable = findProperty('measureBuildsEnabled')?.toBoolean() ?: false
onBuildMetricsReadyListener { report ->
SlowSlowTasksMetricsReporter.report(report)
InternalA8cCiReporter.reportBlocking(
report,
"wordpress",
findProperty('appsMetricsToken')
)
}
attachGradleScanId = System.getenv('CI')?.toBoolean() ?: false
}
allprojects {
apply plugin: libs.plugins.checkstyle.get().pluginId
apply plugin: libs.plugins.detekt.get().pluginId
repositories {
google()
mavenCentral()
maven {
url "https://a8c-libs.s3.amazonaws.com/android/jcenter-mirror"
content {
includeVersion "com.android.volley", "volley", "1.1.1"
includeVersion "com.automattic", "rest", "1.0.8"
includeVersion "com.google.android", "flexbox", "2.0.1"
includeVersion "org.wordpress", "persistentedittext", "1.0.2"
includeVersion "org.wordpress", "wellsql-core", "1.6.0"
includeVersion "org.wordpress", "wellsql", "1.6.0"
// Required for detekt
includeVersion "org.jetbrains.kotlinx", "kotlinx-html-jvm", "0.7.2"
// Required for lintWordpressVanillaRelease
includeVersion "com.jraska", "falcon", "2.1.1"
}
}
maven {
url "https://a8c-libs.s3.amazonaws.com/android"
content {
includeGroup "org.wordpress"
includeGroup "org.wordpress.wellsql"
}
}
}
tasks.register("checkstyle", Checkstyle) {
source 'src'
classpath = files()
}
checkstyle {
toolVersion = libs.plugins.checkstyle.get().version
configFile file("${project.rootDir}/config/checkstyle.xml")
}
detekt {
toolVersion = libs.plugins.detekt.get().version
baseline = file("${project.rootDir}/config/detekt/baseline.xml")
config = files("${project.rootDir}/config/detekt/detekt.yml")
autoCorrect = false
buildUponDefaultConfig = true
disableDefaultRuleSets = false
ignoreFailures = false
parallel = true
debug = false
}
tasks.withType(KotlinCompile).all {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
allWarningsAsErrors = true
freeCompilerArgs += [
"-opt-in=kotlin.RequiresOptIn",
"-Xjvm-default=all"
]
}
}
}
// Onboarding and dev env setup tasks
tasks.register("checkBundler", Exec) {
doFirst {
println "Check Bundler"
}
workingDir = './'
executable "sh"
args "-c", "if ! type 'bundle' > /dev/null; then gem install bundler; fi"
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method checkBundler.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
}
tasks.register("checkBundle", Exec) {
dependsOn tasks.named("checkBundler")
doFirst {
println "Check Bundle"
}
workingDir = './'
executable "sh"
args "-c", "bundle check --path=\${BUNDLE_PATH:-vendor/bundle} > /dev/null || bundle install --jobs=3 --retry=3 --path=\${BUNDLE_PATH:-vendor/bundle}"
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method checkBundle.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
}
tasks.register("applyCredentials", Exec) {
dependsOn tasks.named("checkBundle")
doFirst {
println "Apply credentials for this branch"
}
workingDir = './'
executable "sh"
args "-c", "FASTLANE_SKIP_UPDATE_CHECK=1 FASTLANE_ENV_PRINTER=1 bundle exec fastlane run configure_apply force:true"
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method checkBundle.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
}
tasks.register("configureApply") {
group = 'Onboarding'
description = 'Install dependencies for debug and production builds'
dependsOn applyCredentials
doLast {
println("Done")
}
}
dependencies {
detektPlugins(libs.detekt.formatting)
}
apply from: './config/gradle/code_coverage.gradle'