Skip to content

Commit 9cd23be

Browse files
authored
Merge branch 'master' into chore/update-test-suite-20260224-155243
2 parents ecd0cf8 + c47c692 commit 9cd23be

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

lib/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ java {
1616
}
1717
}
1818

19+
tasks.named('jar', Jar) {
20+
manifest {
21+
attributes('Automatic-Module-Name': 'dev.harrel.jsonschema')
22+
}
23+
}
24+
1925
def jsonProviders = [
2026
[id : 'jackson', additionalVersions: ['2.2.0'],
2127
group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.0'],

providers/jackson3/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ dependencies {
1313
testImplementation testFixtures(project(':json-schema'))
1414
}
1515

16+
tasks.named('jar', Jar) {
17+
manifest {
18+
attributes('Automatic-Module-Name': 'dev.harrel.json.providers.jackson3')
19+
}
20+
}
21+
1622
sonar {
1723
properties {
1824
property 'sonar.projectName', "$project.name (JSON provider)"

0 commit comments

Comments
 (0)