Skip to content

Latest commit

 

History

History
56 lines (45 loc) · 1.1 KB

CONTRIBUTING.md

File metadata and controls

56 lines (45 loc) · 1.1 KB

⚒️ Building the library

To build the library sources, please follow these steps:

  1. Clone the https://github.com/attiasas/ois-core code from Git.

  2. Build the library sources and publish it locally, run the following Gradle command:

    windows
    ./gradlew.bat publishToMavenLocal
    Mac / Linux
    ./gradlew publishToMavenLocal
  3. Clone the plugin code from Git.

  4. Build the plugin sources and publish it locally, run the following Gradle command:

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

🧪 Testing the plugin

To test the library sources, please follow these steps:

windows
./gradlew.bat clean check
Mac / Linux
./gradlew clean check