Hello there,
I am trying to compile a custom application based on the sirius-web-sample-application. When running mvn install, I get a message the following artifacts are missing:
org.eclipse.sirius.web:sirius-web-frontend:jar:0.5.0
org.eclipse.sirius.web:sirius-web-graphql:jar:0.5.0
org.eclipse.sirius.web:sirius-web-services:jar:0.5.0
org.eclipse.sirius.web:sirius-web-spring:jar:0.5.0
I noticed that these are part of the sirius-components. In my pom.xml I include them like this:
<dependency>
<groupId>org.eclipse.sirius.web</groupId>
<artifactId>sirius-web-graphql</artifactId>
<version>0.5.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.sirius.web</groupId>
<artifactId>sirius-web-services</artifactId>
<version>0.5.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.sirius.web</groupId>
<artifactId>sirius-web-spring</artifactId>
<version>0.5.0</version>
</dependency>
The repositories are also referenced in the pom.xml:
<repositories>
<repository>
<id>Central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>github-sirius-components</id>
<url>https://maven.pkg.github.com/eclipse-sirius/sirius-components</url>
</repository>
However, I noticed that the sirius-web repository is not up, always returning a 404 error code. I believe that this is the reason, maven can't resolve these artifacts.
My question is if sirius-components has moved to another location? Or is there any other way to get these artifacts and solve the problem?
Thank you very much in advance!
Best regards