Skip to content

Commit

Permalink
Upgrade graphql-java to 20.1 and smallrye-graphql to 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartisk committed Mar 30, 2023
1 parent 0d8b6a4 commit 416db9a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<micrometer.version>1.10.5</micrometer.version><!-- keep in sync with hdrhistogram -->
<hdrhistogram.version>2.1.12</hdrhistogram.version><!-- keep in sync with micrometer -->
<google-auth.version>0.22.0</google-auth.version>
<graphql-java.version>20.1</graphql-java.version>
<microprofile-config-api.version>3.0.2</microprofile-config-api.version>
<microprofile-health-api.version>4.0</microprofile-health-api.version>
<microprofile-metrics-api.version>4.0.1</microprofile-metrics-api.version>
Expand All @@ -61,7 +62,7 @@
<smallrye-health.version>4.0.1</smallrye-health.version>
<smallrye-metrics.version>4.0.0</smallrye-metrics.version>
<smallrye-open-api.version>3.3.1</smallrye-open-api.version>
<smallrye-graphql.version>2.1.2</smallrye-graphql.version>
<smallrye-graphql.version>2.1.3</smallrye-graphql.version>
<smallrye-opentracing.version>3.0.3</smallrye-opentracing.version>
<smallrye-fault-tolerance.version>6.2.1</smallrye-fault-tolerance.version>
<smallrye-jwt.version>4.2.0</smallrye-jwt.version>
Expand Down Expand Up @@ -6127,6 +6128,12 @@
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit.version}</version>
</dependency>

<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>${graphql-java.version}</version>
</dependency>

<!-- Quarkus build related dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ void registerNativeImageResources(BuildProducer<ServiceProviderBuildItem> servic
void registerNativeResourceBundle(BuildProducer<NativeImageResourceBundleBuildItem> nativeResourceBundleProvider)
throws IOException {
nativeResourceBundleProvider.produce(new NativeImageResourceBundleBuildItem("i18n.Validation"));
nativeResourceBundleProvider.produce(new NativeImageResourceBundleBuildItem("i18n.Parsing"));
}

@BuildStep
Expand Down

0 comments on commit 416db9a

Please sign in to comment.