-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathskip.yml
More file actions
27 lines (24 loc) · 956 Bytes
/
skip.yml
File metadata and controls
27 lines (24 loc) · 956 Bytes
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
# Skip configuration for SkipFoundation module
#skip:
# package: 'skip.foundation'
# the blocks to add to the settings.gradle.kts
settings:
contents:
- block: 'dependencyResolutionManagement'
contents:
- block: 'versionCatalogs'
contents:
- block: 'create("testLibs")'
contents:
- 'library("json", "org.json", "json").version("20251224")'
# the blocks to add to the build.gradle.kts
build:
contents:
- block: 'dependencies'
contents:
- 'implementation(platform("com.squareup.okhttp3:okhttp-bom:5.3.2"))'
- 'implementation("com.squareup.okhttp3:okhttp")'
- 'implementation("org.commonmark:commonmark:0.28.0")'
- 'implementation("org.commonmark:commonmark-ext-gfm-strikethrough:0.28.0")'
# needed to run local tests that use the JSON parser with a full Robolectric shadow environment
- 'testImplementation(testLibs.json)'