From 87573f87996b9b15179c8da0dc0bc75c69375213 Mon Sep 17 00:00:00 2001 From: Luke Korth Date: Thu, 28 Oct 2021 17:24:56 +0000 Subject: [PATCH] Fix invalid Automatic-Module-Name Consistent with https://github.com/graphql-java/graphql-java/pull/2423/files Fixes #101 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 934c51e..c81c90f 100644 --- a/build.gradle +++ b/build.gradle @@ -62,7 +62,7 @@ apply plugin: 'groovy' jar { manifest { - attributes('Automatic-Module-Name': 'com.graphql-java') + attributes('Automatic-Module-Name': 'com.graphqljava') } }