Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 968 Bytes

README.md

File metadata and controls

54 lines (40 loc) · 968 Bytes

Onshape API Java Client

This is a Java library for accessing the Onshape APIs from both cloud and desktop applications.

Copyright 2018-Present Onshape Inc.

Javadoc documentation

Usage: Maven

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>

Usage: Gradle

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'
	}