Skip to content

Commit cb857a3

Browse files
committed
README: use includeGroupByRegex instead of includeGroup in the Gradle example
1 parent ae6a573 commit cb857a3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,16 @@ repositories {
8686
releasesOnly()
8787
}
8888
content {
89-
includeGroup 'io.sf.carte'
89+
// Include io.sf.w3 as well as all the groups used by EchoSVG
90+
includeGroupByRegex 'io\\.sf\\..*'
91+
92+
// Alternative to the regex:
93+
//includeGroup 'io.sf.w3'
9094
}
9195
}
9296
}
9397
```
94-
please use that repository **only** for the artifact groups that it supplies.
98+
please use that repository only for the artifact groups that it supplies.
9599

96100
Then, in your `build.gradle` file you can list the dependencies, for example:
97101

0 commit comments

Comments
 (0)