You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document temporary workaround when importing transitively
Importing each dependency non-transitively (as suggested in #253)
might require users to specify each dependency
indivifually, which might quickly feel cumbersome.
ref #253
ref #294
//Needed because of https://github.com/rm3l/maoni/issues/294
369
+
exclude module: 'unspecified'
370
+
}
331
371
}
332
372
```
333
373
@@ -460,7 +500,11 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
460
500
```gradle
461
501
dependencies {
462
502
// ...
463
-
api 'org.rm3l:maoni-common:10.0.0@aar'
503
+
api('org.rm3l:maoni-common:10.0.0@aar') {
504
+
transitive = true
505
+
//Needed because of https://github.com/rm3l/maoni/issues/294
506
+
exclude module: 'unspecified'
507
+
}
464
508
}
465
509
```
466
510
You can write your project in any JVM language of your choice (e.g., [Kotlin](https://kotlinlang.org/), as with [maoni-slack](https://github.com/rm3l/maoni-slack) and [maoni-github](https://github.com/rm3l/maoni-github)), as long as the callback implementation can be called from Maoni.
0 commit comments