You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
When running mvn compile quarkus:dev get the following dependencies error:
[INFO] Scanning for projects...
[INFO]
[INFO] ---------< com.github.t1.graphql-federation:demo-film-quarkus >---------
[INFO] Building demo-film-quarkus 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.t1.graphql-federation</groupId>
<artifactId>root</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>demo-parent</artifactId>
<packaging>pom</packaging>
<modules>
<module>film-war</module>
<module>film-quarkus</module>
<module>review</module>
<module>artist-war</module>
<module>artist-quarkus</module>
</modules>
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<profiles>
[WARNING] The POM for io.smallrye:smallrye-graphql-federation-api:jar:1.2.3-SNAPSHOT is missing, no dependency information available
<packaging>pom</packaging>
[WARNING] The POM for com.github.t1.graphql-federation:quarkus-extension:jar:1.0-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for io.smallrye:smallrye-graphql:jar:1.2.3-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for io.smallrye:smallrye-graphql-client:jar:1.2.3-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for io.smallrye:smallrye-graphql-servlet:jar:1.2.3-SNAPSHOT is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.230 s
[INFO] Finished at: 2021-08-03T22:27:51+03:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project demo-film-quarkus: Could not resolve dependencies for project com.github.t1.graphql-federation:demo-film-quarkus:jar:1.0-SNAPSHOT: The following artifacts could not be resolved: io.smallrye:smallrye-graphql-federation-api:jar:1.2.3-SNAPSHOT, com.github.t1.graphql-federation:quarkus-extension:jar:1.0-SNAPSHOT, io.smallrye:smallrye-graphql:jar:1.2.3-SNAPSHOT, io.smallrye:smallrye-graphql-client:jar:1.2.3-SNAPSHOT, io.smallrye:smallrye-graphql-servlet:jar:1.2.3-SNAPSHOT: Could not find artifact io.smallrye:smallrye-graphql-federation-api:jar:1.2.3-SNAPSHOT -> [Help 1]
It seems that upgrading smallrye-graphql version to 1.3.0 solves the issue - I opened the #3 PR for that
The text was updated successfully, but these errors were encountered:
Thanks for the PR, but it has compile errors now. I'll push more updates, but this demo is obsolete, actually. I'll also push a hint in the readme to the more current project.
When running
mvn compile quarkus:dev
get the following dependencies error:It seems that upgrading
smallrye-graphql
version to 1.3.0 solves the issue - I opened the #3 PR for thatThe text was updated successfully, but these errors were encountered: