-
I am following the tutorial for building applications. I copied the files specified here and ran 'mvn clean install' but keep getting the error below:
I followed the link https://repo.maven/apache.org/maven2 and there is no org.eclipse.mosaic:mosaic-application:jar:20.0 there. Based on some searching, I tried running 'mvn clean install -U' but that does not work either. I would really appreciate any advice. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Please add the following to your pom.xml: <repositories>
<repository>
<id>repo.eclipse.org</id>
<name>MOSAIC Repository</name>
<url>https://repo.eclipse.org/content/repositories/mosaic</url>
</repository>
</repositories> We fix our documentation with the next release. |
Beta Was this translation helpful? Give feedback.
Please add the following to your pom.xml:
We fix our documentation with the next release.