Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Microsandbox Java SDK

A minimal Java SDK for the Microsandbox project.

Installation

Maven

<dependency>
    <groupId>dev.microsandbox</groupId>
    <artifactId>microsandbox</artifactId>
    <version>0.1.0</version>
</dependency>

Gradle

implementation 'dev.microsandbox:microsandbox:0.1.0'

Usage

import dev.microsandbox.HelloWorld;

public class Example {
    public static void main(String[] args) {
        // Print a greeting
        HelloWorld.greet("World");
    }
}

Examples

Check out the src/main/java/dev/microsandbox/examples directory for examples of how to use this SDK.

You can run the examples with Maven:

# Build the project
mvn clean install

# Run the example
mvn exec:java

Development

See DEVELOPMENT.md for information on building from source and contributing to the project.

License

Apache 2.0