File tree 2 files changed +2
-25
lines changed
2 files changed +2
-25
lines changed Original file line number Diff line number Diff line change 7
7
8
8
Workflow is an application framework that provides architectural primitives.
9
9
10
+ ## fnord
11
+
10
12
Workflow is:
11
13
12
14
* Written in and used for Kotlin and Swift
Original file line number Diff line number Diff line change @@ -31,17 +31,6 @@ plugins {
31
31
32
32
shardConnectedCheckTasks(project)
33
33
34
- subprojects {
35
-
36
- afterEvaluate {
37
- configurations.configureEach {
38
- // There could be transitive dependencies in tests with a lower version. This could cause
39
- // problems with a newer Kotlin version that we use.
40
- resolutionStrategy.force(libs.kotlin.reflect)
41
- }
42
- }
43
- }
44
-
45
34
apply (from = rootProject.file(" .buildscript/binary-validation.gradle" ))
46
35
47
36
// This plugin needs to be applied to the root projects for the dokkaGfmCollector task we use to
@@ -111,20 +100,6 @@ subprojects {
111
100
.configureEach { mustRunAfter(tasks.matching { it is Sign }) }
112
101
}
113
102
114
- allprojects {
115
-
116
- configurations.all {
117
- resolutionStrategy.eachDependency {
118
- // This ensures that any time a dependency has a transitive dependency upon androidx.lifecycle,
119
- // it uses the same version as the rest of the project. This is crucial, since Androidx
120
- // libraries are never in sync and lifecycle 2.4.0 introduced api-breaking changes.
121
- if (requested.group == " androidx.lifecycle" ) {
122
- useVersion(libs.versions.androidx.lifecycle.get())
123
- }
124
- }
125
- }
126
- }
127
-
128
103
// This task is invoked by the documentation site generator script in the main workflow project (not
129
104
// in this repo), which also expects the generated files to be in a specific location. Both the task
130
105
// name and destination directory are defined in this script:
You can’t perform that action at this time.
0 commit comments