Cannot build codeobe integration sample

Viewed 12

I tried to build my own integration project by following codeobe sample found in this repo. However my build fails with following error:

[ERROR] Failed to execute goal on project fingerprint_service: Could not resolve dependencies for project org.daniel.integration:pizza_service:jar:1.0.0: Could not find artifact org.codeobe.integration:codeobe-java-sdk:jar:1.0.0 in central (https://repo.maven.apache.org/maven2) -> [Help 1]

Can someone please help, Thanks in advance

1 Answers

The Codeobe FAQ says this:

How to install codeobe sdk

Download SDK from our website and use following command to install locally

mvn install:install-file -Dfile=codeobe_sdk-1.0.0.jar  \
    -DgroupId=org.susi.integration -DartifactId=codeobe_sdk 
    -Dversion=1.0.0 -Dpackaging=jar

Try it. If it doesn't work, reach out to the Codeobe team for clearer instructions on what to do.

Related