SDKs are in very early alpha: We’re working as hard as we can to get them into a stable state. Please bear with us as we iterate rapidly.
This package is not yet published to Maven Central.
Requirements
Build locally
cd packages/sdk/sdk-java
mvn -DskipTests package
This produces target/sdk-java-0.0.0-local.jar.
Use in your project
Install the generated jar into your local Maven cache:
mvn install:install-file \
-Dfile=target/sdk-java-0.0.0-local.jar \
-DgroupId=app.phaseo \
-DartifactId=sdk-java \
-Dversion=0.0.0-local \
-Dpackaging=jar
Then add it as a dependency in your app pom.xml:
<dependency>
<groupId>app.phaseo</groupId>
<artifactId>sdk-java</artifactId>
<version>0.0.0-local</version>
</dependency>