File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ jobs:
126
126
id : prepare_next_dev
127
127
run : |
128
128
sed -i -e 's/${{ needs.version.outputs.CURRENT_VERSION }}/${{ needs.version.outputs.NEXT_VERSION }}/g' gradle.properties
129
- sed -i -E -e 's/json-schema-validator(:|\/)[0-9]+\.[0-9]+\.[0-9]+/json-schema-validator\1${{ needs.version.outputs.RELEASE_VERSION }}/g' README.md
130
- sed -i -E -e 's/json-schema-validator(:|\/)[0-9]+\.[0-9]+\.[0-9]+(-SNAPSHOT)/json-schema-validator\1${{ needs.version.outputs.NEXT_VERSION }}/g' README.md
129
+ sed -i -E -e 's/json-schema-validator((-[a-z]+)? :|\/)[0-9]+\.[0-9]+\.[0-9]+/json-schema-validator\1${{ needs.version.outputs.RELEASE_VERSION }}/g' README.md
130
+ sed -i -E -e 's/json-schema-validator((-[a-z]+)? :|\/)[0-9]+\.[0-9]+\.[0-9]+(-SNAPSHOT)/json-schema-validator\1${{ needs.version.outputs.NEXT_VERSION }}/g' README.md
131
131
- name : Commit next dev version
132
132
id : commit_next_dev
133
133
uses : EndBug/add-and-commit@v9
Original file line number Diff line number Diff line change @@ -58,6 +58,11 @@ repositories {
58
58
}
59
59
60
60
implementation 'io.github.optimumcode:json-schema-validator:0.4.0'
61
+
62
+ // or with BOM
63
+
64
+ implementation(platform("io.github.optimumcode:json-schema-validator-bom:0.4.0"))
65
+ implementation("io.github.optimumcode:json-schema-validator")
61
66
```
62
67
63
68
_ Release are published to Sonatype repository. The synchronization with Maven Central takes time._
@@ -91,6 +96,11 @@ repositories {
91
96
}
92
97
93
98
implementation(" io.github.optimumcode:json-schema-validator:0.5.0-SNAPSHOT" )
99
+
100
+ // or with BOM
101
+
102
+ implementation(platform(" io.github.optimumcode:json-schema-validator-bom:0.5.0-SNAPSHOT" ))
103
+ implementation(" io.github.optimumcode:json-schema-validator" )
94
104
```
95
105
96
106
##### Groovy
You can’t perform that action at this time.
0 commit comments