This is a Java library for accessing the Onshape APIs from both cloud and desktop applications.
Copyright 2018-Present Onshape Inc.
To use from Maven, add the following to pom.xml:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
and
<dependency>
<groupId>com.github.onshape-public</groupId>
<artifactId>java-client</artifactId>
<version>v1.137.27923.860f36b32a5a</version>
</dependency>
To use from Gradle, add the following to build.gradle:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
and
dependencies {
implementation 'com.github.onshape-public:java-client:v1.137.27923.860f36b32a5a'
}