diff --git a/json-path-assert/build.gradle b/json-path-assert/build.gradle index f63e70bb..cd9f0a44 100644 --- a/json-path-assert/build.gradle +++ b/json-path-assert/build.gradle @@ -5,7 +5,7 @@ description = "Assertions on Json using JsonPath" jar { baseName 'json-path-assert' manifest { - attributes 'Implementation-Title': 'json-path-assert', 'Implementation-Version': version + attributes 'Implementation-Title': 'json-path-assert', 'Implementation-Version': version, 'Automatic-Module-Name': 'jayway.jsonpath.pathassert' } } diff --git a/json-path-web-test/build.gradle b/json-path-web-test/build.gradle index 4f3713c7..cfaffe95 100644 --- a/json-path-web-test/build.gradle +++ b/json-path-web-test/build.gradle @@ -21,7 +21,8 @@ jar { manifest { attributes 'Implementation-Title': 'json-path-web-test', 'Implementation-Version': version, - 'Main-Class': mainClassName + 'Main-Class': mainClassName, + 'Automatic-Module-Name': 'jayway.jsonpath.webtest' } } diff --git a/json-path/build.gradle b/json-path/build.gradle index 812eac64..6e0e9986 100644 --- a/json-path/build.gradle +++ b/json-path/build.gradle @@ -5,7 +5,7 @@ description = "Java port of Stefan Goessner JsonPath." jar { baseName 'json-path' manifest { - attributes 'Implementation-Title': 'json-path', 'Implementation-Version': version + attributes 'Implementation-Title': 'json-path', 'Implementation-Version': version, 'Automatic-Module-Name': 'jayway.jsonpath.path' instruction 'Import-Package', 'org.json.*;resolution:=optional', 'com.google.gson.*;resolution:=optional', 'com.fasterxml.jackson.*;resolution:=optional', 'org.apache.tapestry5.json.*;resolution:=optional', 'org.codehaus.jettison.*;resolution:=optional', '*' } }