Skip to content

Commit 547ced7

Browse files
committed
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
1 parent 3653a96 commit 547ced7

File tree

6 files changed

+100
-21
lines changed

6 files changed

+100
-21
lines changed

README.md

+55-11
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,11 @@ Declare the [Maven Central repository](https://repo.maven.apache.org/maven2/) (i
140140
141141
dependencies {
142142
// ...
143-
implementation 'org.rm3l:maoni:10.0.0@aar'
143+
implementation('org.rm3l:maoni:10.0.0@aar') {
144+
transitive = true
145+
//Needed because of https://github.com/rm3l/maoni/issues/294
146+
exclude module: 'unspecified'
147+
}
144148
}
145149
```
146150

@@ -203,7 +207,11 @@ Add this additional line to your `build.gradle`:
203207
```gradle
204208
dependencies {
205209
// ...
206-
implementation 'org.rm3l:maoni:10.0.0@aar'
210+
implementation('org.rm3l:maoni:10.0.0@aar') {
211+
transitive = true
212+
//Needed because of https://github.com/rm3l/maoni/issues/294
213+
exclude module: 'unspecified'
214+
}
207215
}
208216
```
209217

@@ -233,8 +241,16 @@ Add this additional line to your `build.gradle`:
233241
```gradle
234242
dependencies {
235243
// ...
236-
implementation 'org.rm3l:maoni:10.0.0@aar'
237-
implementation 'org.rm3l:maoni-slack:10.0.0@aar'
244+
implementation('org.rm3l:maoni:10.0.0@aar') {
245+
transitive = true
246+
//Needed because of https://github.com/rm3l/maoni/issues/294
247+
exclude module: 'unspecified'
248+
}
249+
implementation('org.rm3l:maoni-slack:10.0.0@aar') {
250+
transitive = true
251+
//Needed because of https://github.com/rm3l/maoni/issues/294
252+
exclude module: 'unspecified'
253+
}
238254
}
239255
```
240256

@@ -263,8 +279,16 @@ Add this additional line to your `build.gradle`:
263279

264280
```gradle
265281
dependencies {
266-
implementation 'org.rm3l:maoni:10.0.0@aar'
267-
implementation 'org.rm3l:maoni-github:10.0.0@aar'
282+
implementation('org.rm3l:maoni:10.0.0@aar') {
283+
transitive = true
284+
//Needed because of https://github.com/rm3l/maoni/issues/294
285+
exclude module: 'unspecified'
286+
}
287+
implementation('org.rm3l:maoni-github:10.0.0@aar') {
288+
transitive = true
289+
//Needed because of https://github.com/rm3l/maoni/issues/294
290+
exclude module: 'unspecified'
291+
}
268292
}
269293
```
270294

@@ -294,8 +318,16 @@ Add this additional line to your `build.gradle`:
294318

295319
```gradle
296320
dependencies {
297-
implementation 'org.rm3l:maoni:10.0.0@aar'
298-
implementation 'org.rm3l:maoni-jira:10.0.0@aar'
321+
implementation('org.rm3l:maoni:10.0.0@aar') {
322+
transitive = true
323+
//Needed because of https://github.com/rm3l/maoni/issues/294
324+
exclude module: 'unspecified'
325+
}
326+
implementation('org.rm3l:maoni-jira:10.0.0@aar') {
327+
transitive = true
328+
//Needed because of https://github.com/rm3l/maoni/issues/294
329+
exclude module: 'unspecified'
330+
}
299331
}
300332
```
301333

@@ -326,8 +358,16 @@ Add this additional line to your `build.gradle`:
326358
```gradle
327359
dependencies {
328360
// ...
329-
implementation 'org.rm3l:maoni:10.0.0@aar'
330-
implementation 'org.rm3l:maoni-doorbell:10.0.0@aar'
361+
implementation('org.rm3l:maoni:10.0.0@aar') {
362+
transitive = true
363+
//Needed because of https://github.com/rm3l/maoni/issues/294
364+
exclude module: 'unspecified'
365+
}
366+
implementation('org.rm3l:maoni-doorbell:10.0.0@aar') {
367+
transitive = true
368+
//Needed because of https://github.com/rm3l/maoni/issues/294
369+
exclude module: 'unspecified'
370+
}
331371
}
332372
```
333373

@@ -460,7 +500,11 @@ You just have to include `maoni-common` as a dependency in your project, e.g., w
460500
```gradle
461501
dependencies {
462502
// ...
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+
}
464508
}
465509
```
466510
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.

callbacks/maoni-doorbell/README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@ Add this to your `build.gradle`:
1717

1818
```gradle
1919
dependencies {
20-
implementation 'org.rm3l:maoni:10.0.0@aar'
21-
implementation 'org.rm3l:maoni-doorbell:10.0.0@aar'
20+
implementation('org.rm3l:maoni:10.0.0@aar') {
21+
transitive = true
22+
//Needed because of https://github.com/rm3l/maoni/issues/294
23+
exclude module: 'unspecified'
24+
}
25+
implementation('org.rm3l:maoni-doorbell:10.0.0@aar') {
26+
transitive = true
27+
//Needed because of https://github.com/rm3l/maoni/issues/294
28+
exclude module: 'unspecified'
29+
}
2230
}
2331
```
2432

callbacks/maoni-email/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ Add this to your `build.gradle`:
1616

1717
```gradle
1818
dependencies {
19-
implementation 'org.rm3l:maoni:10.0.0@aar'
20-
implementation 'org.rm3l:maoni-email:10.0.0@aar'
19+
implementation('org.rm3l:maoni:10.0.0@aar') {
20+
transitive = true
21+
//Needed because of https://github.com/rm3l/maoni/issues/294
22+
exclude module: 'unspecified'
23+
}
2124
}
2225
```
2326

callbacks/maoni-github/README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,16 @@ Add this to your `build.gradle`:
1919

2020
```gradle
2121
dependencies {
22-
implementation 'org.rm3l:maoni:10.0.0@aar'
23-
implementation 'org.rm3l:maoni-github:10.0.0@aar'
22+
implementation('org.rm3l:maoni:10.0.0@aar') {
23+
transitive = true
24+
//Needed because of https://github.com/rm3l/maoni/issues/294
25+
exclude module: 'unspecified'
26+
}
27+
implementation('org.rm3l:maoni-github:10.0.0@aar') {
28+
transitive = true
29+
//Needed because of https://github.com/rm3l/maoni/issues/294
30+
exclude module: 'unspecified'
31+
}
2432
}
2533
```
2634

callbacks/maoni-jira/README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@ Add this to your `build.gradle`:
1717

1818
```gradle
1919
dependencies {
20-
implementation 'org.rm3l:maoni:10.0.0@aar'
21-
implementation 'org.rm3l:maoni-jira:10.0.0@aar'
20+
implementation('org.rm3l:maoni:10.0.0@aar') {
21+
transitive = true
22+
//Needed because of https://github.com/rm3l/maoni/issues/294
23+
exclude module: 'unspecified'
24+
}
25+
implementation('org.rm3l:maoni-jira:10.0.0@aar') {
26+
transitive = true
27+
//Needed because of https://github.com/rm3l/maoni/issues/294
28+
exclude module: 'unspecified'
29+
}
2230
}
2331
```
2432

callbacks/maoni-slack/README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,16 @@ Now in your app, add this to your `build.gradle`:
2121

2222
```gradle
2323
dependencies {
24-
implementation 'org.rm3l:maoni:10.0.0@aar'
25-
implementation 'org.rm3l:maoni-slack:10.0.0@aar'
24+
implementation('org.rm3l:maoni:10.0.0@aar') {
25+
transitive = true
26+
//Needed because of https://github.com/rm3l/maoni/issues/294
27+
exclude module: 'unspecified'
28+
}
29+
implementation('org.rm3l:maoni-slack:10.0.0@aar') {
30+
transitive = true
31+
//Needed because of https://github.com/rm3l/maoni/issues/294
32+
exclude module: 'unspecified'
33+
}
2634
}
2735
```
2836

0 commit comments

Comments
 (0)