From 30586e57c22c30572cf66998835cfb87cc6206ee Mon Sep 17 00:00:00 2001 From: Oryan M Date: Wed, 9 Aug 2023 13:24:20 -0400 Subject: [PATCH 1/2] Fix javadoc error by adding module-info --- pom.xml | 11 +++++++++-- src/main/kotlin/module-info.java | 24 ++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 src/main/kotlin/module-info.java diff --git a/pom.xml b/pom.xml index 74ea6ee2..00a962a7 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ UTF-8 11 1.8.21 - 1.6.4 + 1.7.3 2.15.2 21.0 1.0.4 @@ -134,6 +134,13 @@ org.jetbrains.kotlin kotlin-stdlib + + + + org.jetbrains + annotations + + org.jetbrains.kotlin @@ -141,7 +148,7 @@ org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 + kotlinx-coroutines-jdk9 org.jetbrains.kotlinx diff --git a/src/main/kotlin/module-info.java b/src/main/kotlin/module-info.java new file mode 100644 index 00000000..2ec2dd1b --- /dev/null +++ b/src/main/kotlin/module-info.java @@ -0,0 +1,24 @@ +module graphql.java.tools { + requires kotlin.stdlib; + requires kotlin.reflect; + requires kotlinx.coroutines.core; + requires kotlinx.coroutines.reactive; + + requires com.graphqljava; + + requires com.fasterxml.jackson.core; + requires com.fasterxml.jackson.kotlin; + requires com.fasterxml.jackson.databind; + requires com.fasterxml.jackson.datatype.jdk8; + requires com.fasterxml.classmate; + + requires org.antlr.antlr4.runtime; + requires org.apache.commons.lang3; + requires org.reactivestreams; + requires org.slf4j; + requires spring.aop; + + exports graphql.kickstart.tools; + + opens graphql.kickstart.tools to com.fasterxml.jackson.databind; +} From e3665bd21828b453bf61b124c6c4ce3259ee5555 Mon Sep 17 00:00:00 2001 From: oryan Date: Fri, 18 Aug 2023 09:26:10 -0400 Subject: [PATCH 2/2] Fix coroutines module warning --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 00a962a7..939b1028 100644 --- a/pom.xml +++ b/pom.xml @@ -147,12 +147,12 @@ kotlin-reflect + org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core + kotlinx-coroutines-core-jvm org.jetbrains.kotlinx