deephaven / deephaven-docs-community

Source code for Community docs on the deephaven.io website.
Apache License 2.0
0 stars 5 forks source link

Document how to build against DHC jars #129

Open margaretkennedy opened 8 months ago

margaretkennedy commented 8 months ago

We should have documentation of how to build projects that depend on DHC (such as utilities for queries). This is analogous to the local query development page of the DHE documentation.

Here is an example of some basic helpful dependencies for DHC (though the 'correct list' for a given project depends on what the project is doing):

dependencies {
    api "io.deephaven:deephaven-FishUtil:$dhcVersion"
    api "io.deephaven:deephaven-Configuration:$dhcVersion"
    implementation "io.deephaven:deephaven-log-factory:$dhcVersion"
    api "io.deephaven:deephaven-engine-api:$dhcVersion"
    api "io.deephaven:deephaven-engine-table:$dhcVersion"
    api "io.deephaven:deephaven-extensions-csv:$dhcVersion"
}

Somewhat related — that DHE page should be updated to cover DHC/dnd as well.