Authentication required to access your repository #1
-
|
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
|
Hello Pascal, Please check that you use correct artifact version of CIB seven ( And do not forget to use CIB seven repository (in See the details here https://docs.cibseven.de/get-started/apache-maven/ Sadly, we still did not update all the documentation available. So there are still some places with misleading and erroneous information we are actively fixing right now. Regards, Vasily |
Beta Was this translation helpful? Give feedback.
-
|
Vasily, |
Beta Was this translation helpful? Give feedback.
-
|
Pascal, repo.spring.io is definitely not our public repo. This artifact is expected to be taken from: https://artifacts.cibseven.de/repository/public/org/camunda/bpm/springboot/camunda-bpm-spring-boot-starter-webapp/7.22.0-cibseven/camunda-bpm-spring-boot-starter-webapp-7.22.0-cibseven.pom And it should be available. Looks like you have several extra repositories defined and not the right one was selected by maven. You can try to change order of repositories or experiment with mirrors, like it is suggested here: https://stackoverflow.com/questions/34238196/how-maven-handle-multiple-repository-configurations |
Beta Was this translation helpful? Give feedback.
-
|
Vasily, |
Beta Was this translation helpful? Give feedback.
-
|
I did face similar issues . I saw a lots of 403 errors and had to add maven central as repo in my pom.xml. <repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
<url>https://artifacts.cibseven.de/repository/public/</url>
</repository>
<repository>
<id>central</id>
<name>Maven Central Repository</name>
<url>https://repo1.maven.org/maven2</url>
</repository>
</repositories> |
Beta Was this translation helpful? Give feedback.
Hello Pascal,
Please check that you use correct artifact version of CIB seven (
7.22.0-cibseven). In docs sometimes there is misleading 1.0.0 artifact version.And do not forget to use CIB seven repository (in
pom.xmlfile, or insettings.xml):See the details here https://docs.cibseven.de/get-started/apache-maven/
Sadly, we still did not update all the documentation available. So there are still some places with misleading and erroneous information we are actively fixing ri…