The following artifacts could not be resolved: io.camunda:identity-sdk:jar:8.3.1

when I use command './mvnw clean package -D skipChecks -D skipTests
’ to build the project(“GitHub - camunda/zeebe: Distributed Workflow Engine for Microservices Orchestration”),I find ther error “The following artifacts could not be resolved: io.camunda:identity-sdk:jar:8.3.1”,identity-sdk is not in “https://mvnrepository.com/”,so what can I do to build the project。

:wave: @buptxhyxhyxhy Please add the following configuration to your setting.xml.

<!-- identity -->
<repository>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
    <id>identity</id>
    <name>Camunda Identity</name>
    <url>https://artifacts.camunda.com/artifactory/camunda-identity/</url>
</repository>

<repository>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
    <id>identity-snapshots</id>
    <name>Camunda Snapshot Identity</name>
    <url>https://artifacts.camunda.com/artifactory/camunda-identity-snapshots/</url>
</repository>

1 Like