correct sentence
1 file changed
tree: 57685931144bcf9f984fc7bb51ad1c901455ad65
  1. src/
  2. tools/
  3. .gitignore
  4. .travis.yml
  5. DISCLAIMER-WIP
  6. LICENSE
  7. NOTICE
  8. pom.xml
  9. README.md
README.md

Build Status

=================

DataSketches Vector Library (Experimental)

This code is offered “as is” and may not be to the quality of code in, for example, the core datasketches-java repository.

Documentation

DataSketches Library Website

Build Instructions

JDK8 is required to compile

This DataSketches component is pure Java and you must compile using JDK 8.

Recommended Build Tool

This DataSketches component is structured as a Maven project and Maven is the recommended Build Tool.

There are two types of tests: normal unit tests and tests run by the strict profile.

To run normal unit tests:

$ mvn clean test

To run the strict profile tests:

$ mvn clean test -P strict

To install jars built from the downloaded source:

$ mvn clean install -DskipTests=true

This will create the following jars:

  • datasketches-vector-X.Y.Z-incubating.jar The compiled main class files.
  • datasketches-vector-X.Y.Z-incubating-tests.jar The compiled test class files.
  • datasketches-vector-X.Y.Z-incubating-sources.jar The main source files.
  • datasketches-vector-X.Y.Z-incubating-test-sources.jar The test source files
  • datasketches-vector-X.Y.Z-incubating-javadoc.jar The compressed Javadocs.

Dependencies

Run-time

There are two run-time dependencies:

  • org.ojalgo : ojalgo
  • org.apache.datasketches : datasketches-memory

Testing

See the pom.xml file for test dependencies.

How to Contact Us