Prerequisites
The highest supported JDK version is 21. The lowest supported JDK version is 8.
All of the ScaleOut JARs are available on Maven Central.
You can acquire the ScaleOut DigitalTwin Builder JARs in one of two ways:
Reference the DigitalTwin builder JARs from your project.
Download the required JARs from the Maven Central repository.
Using Gradle
<!-- the digital twin hosting library, used for creating simulation and real-time digital twins -->
implementation group: 'com.scaleoutsoftware.digitaltwin', name: "hosting", version: '3.2.10'
<!-- the digital twin development library, used for testing simulation and real-time digital twins on the Workbench -->
testImplementation group: 'com.scaleoutsoftware.digitaltwin', name: "development", version: '3.2.1'
Using Maven
<dependencies>
<!-- ... -->
<!-- your dependencies -->
<!-- ... -->
<dependency>
<!-- the digital twin hosting library, used for creating simulation and real-time digital twins -->
<groupId>com.scaleoutsoftware.digitaltwin</groupId>
<artifactId>hosting</artifactId>
<version>3.2.10</version>
</dependency>
<!-- the digital twin development library, used for testing simulation and real-time digital twins on the Workbench -->
<dependency>
<groupId>com.scaleoutsoftware.digitaltwin</groupId>
<artifactId>development</artifactId>
<version>3.2.1</version>
</dependency>
</dependencies>