Skip to content

Setting Up a Dev Environment

Assaf Attias edited this page Oct 27, 2024 · 3 revisions

The OIS ecosystem is not available in Maven Central and must be installed locally.

Install Core Library

  1. Clone the core library repository:

     git clone https://github.com/attiasas/ois-core.git
  2. Navigate to the cloned directory and publish the library to Maven Local:

    windows
    ./gradlew.bat publishToMavenLocal
    Mac / Linux
    ./gradlew publishToMavenLocal

Install OIS Gradle Plugin

  1. Clone the plugin repository:

     git clone https://github.com/attiasas/ois-gradle-plugin.git
  2. Navigate to the cloned directory and publish the library to Maven Local:

    windows
    ./gradlew.bat publishToMavenLocal
    Mac / Linux
    ./gradlew publishToMavenLocal

The development environment is set up!