Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 634 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 634 Bytes

manifold-gradle-plugin

A Gradle plugin for Manifold

Requires Gradle 6.4 or newer.

The java plugin and relevant compiler arguments are automatically applied.

A project extension manifold is added with a convenience property manifoldVersion. The default is 2021.1.15.

Example application:

plugins {
    id 'systems.manifold.manifold-gradle-plugin' version '0.0.2-alpha'
}

repositories {
    mavenCentral()
}

manifold {
    manifoldVersion = '2021.1.15'
}

dependencies {
    // apply desired manifold libs
    implementation "systems.manifold:manifold-props-rt:${manifold.manifoldVersion.get()}"
    ...
}