Skip to content
Ravi Chodavarapu edited this page Jun 10, 2016 · 2 revisions

The recommended approach to getting started with datamill is to include it as a Maven dependency:

<dependency>
    <groupId>foundation.stack.datamill</groupId>
    <artifactId>core</artifactId>
    <version>0.1.0</version>
</dependency>

You can use Maven or Gradle for dependency management and build, as per your liking. Just declare the datamill core dependency.

Typical datamill applications are just standalone Java applications - they have a class with a main method as the entrypoint. That means you can run them using your favorite IDE the way you would launch any standard Java application, or build an executable JAR out of them.

Take a look at HTTP for the basics of starting a HTTP server.

Clone this wiki locally